Merge branch 'master' into develop

This commit is contained in:
Vitalii Elenhaupt 2021-03-08 11:09:32 +02:00
commit ad405e09b0
No known key found for this signature in database
GPG key ID: CD0BF17825928BC0
6 changed files with 7 additions and 7 deletions

View file

@ -1,11 +1,11 @@
FROM alpine:3.12 as builder
FROM alpine:latest as builder
RUN apk add --update crystal shards openssl-dev yaml-dev musl-dev make
RUN mkdir /ameba
WORKDIR /ameba
COPY . /ameba/
RUN make clean && make
FROM alpine:3.12
FROM alpine:latest
RUN apk add --update openssl yaml pcre gc libevent libgcc
RUN mkdir /src
WORKDIR /src

View file

@ -1,5 +1,5 @@
name: ameba
version: 0.13.4
version: 0.14.0
authors:
- Vitalii Elenhaupt <velenhaupt@gmail.com>

View file

@ -25,7 +25,7 @@ module Ameba::Rule::Performance
# YAML configuration example:
#
# ```
# Performance/ChainedCallWithNoBang
# Performance/ChainedCallWithNoBang:
# Enabled: true
# CallNames:
# - uniq

View file

@ -16,7 +16,7 @@ module Ameba::Rule::Performance
# YAML configuration example:
#
# ```
# Performance/CompactAfterMap
# Performance/CompactAfterMap:
# Enabled: true
# ```
class CompactAfterMap < Base

View file

@ -16,7 +16,7 @@ module Ameba::Rule::Performance
# YAML configuration example:
#
# ```
# Performance/FlattenAfterMap
# Performance/FlattenAfterMap:
# Enabled: true
# ```
class FlattenAfterMap < Base

View file

@ -19,7 +19,7 @@ module Ameba::Rule::Performance
# YAML configuration example:
#
# ```
# Performance/MapInsteadOfBlock
# Performance/MapInsteadOfBlock:
# Enabled: true
# ```
class MapInsteadOfBlock < Base