Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
veelenga committed Mar 8, 2021
2 parents e32f1dd + c1deb8a commit ad405e0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ameba
version: 0.13.4
version: 0.14.0

authors:
- Vitalii Elenhaupt <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/ameba/rule/performance/chained_call_with_no_bang.cr
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module Ameba::Rule::Performance
# YAML configuration example:
#
# ```
# Performance/ChainedCallWithNoBang
# Performance/ChainedCallWithNoBang:
# Enabled: true
# CallNames:
# - uniq
Expand Down
2 changes: 1 addition & 1 deletion src/ameba/rule/performance/compact_after_map.cr
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module Ameba::Rule::Performance
# YAML configuration example:
#
# ```
# Performance/CompactAfterMap
# Performance/CompactAfterMap:
# Enabled: true
# ```
class CompactAfterMap < Base
Expand Down
2 changes: 1 addition & 1 deletion src/ameba/rule/performance/flatten_after_map.cr
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module Ameba::Rule::Performance
# YAML configuration example:
#
# ```
# Performance/FlattenAfterMap
# Performance/FlattenAfterMap:
# Enabled: true
# ```
class FlattenAfterMap < Base
Expand Down
2 changes: 1 addition & 1 deletion src/ameba/rule/performance/map_instead_of_block.cr
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module Ameba::Rule::Performance
# YAML configuration example:
#
# ```
# Performance/MapInsteadOfBlock
# Performance/MapInsteadOfBlock:
# Enabled: true
# ```
class MapInsteadOfBlock < Base
Expand Down

0 comments on commit ad405e0

Please sign in to comment.