safe_pusher 0.4.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b35c0d67956c4dcd646f9766458d69524ca43b9fc0bfe44f316ca1e114d8b61
4
- data.tar.gz: 959b5176de2e4a3fa97c449c684fc15c4e0c87bfa132efa6045b03b25a0c8ad6
3
+ metadata.gz: 13521c36f99e1c7faf464e198200481f11a682fdf187623b7498a580c5afdcbc
4
+ data.tar.gz: 6451b23d3f33a84c488b8bb940c80c2c639132c2e4b6e9b1d021495f50cb0899
5
5
  SHA512:
6
- metadata.gz: ce2ca9a10f18e3a0f242fea8509c30310f2c040d8dc54ff5d91f65034ecfb9a1f28675624699285da5f1b8c9aabb03fa797d3cb8b805bf8dd27215798806baff
7
- data.tar.gz: e17fcb0668567c566cff46cc8a4aff2b89c5537d2be983c27f27eb95fe11eabadaba96afaf32dbd099380555c6b3f15fd037101381d1ee1accd5890333d88fe0
6
+ metadata.gz: 853cb3579ec9b524fb0063157134d60f8f4b3be205d2b67f0f2873f15de3df90b9f61e7b30f1d65fcb5de26d6cd8da668682f20c5bccad663d5de3e39bfaba29
7
+ data.tar.gz: b0137b2a53dd30a1063c818615a8da74e79ac61a3e0e8221b090ed2cf6ad21f0b580cf300569b8255e21ba3b301dbee46c2bc2e3eaf5d85774688e265349fb14
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This project adheres to [Semantic Versioning](http://semver.org)
4
4
 
5
+ ## [0.4.3] - 2021-02-01
6
+ Fix:
7
+ - Do not erase the app locales files.
8
+
5
9
  ## [0.4.2] - 2020-08-28
6
10
  Fix:
7
11
  - Do not inject the locales files directly in the load path but add them instead.
@@ -1,3 +1,3 @@
1
1
  module SafePusher
2
- VERSION = '0.4.2'.freeze
2
+ VERSION = '0.5.0'.freeze
3
3
  end
data/lib/safe_pusher.rb CHANGED
@@ -12,8 +12,8 @@ require 'safe_pusher/client/rspec'
12
12
  require 'safe_pusher/client/pronto'
13
13
  require 'safe_pusher/client/github'
14
14
 
15
- I18n.config.available_locales = :en
16
- I18n.load_path += Dir[File.expand_path('config/locales') + '/*.yml']
15
+ I18n.config.available_locales_set << :en
16
+ I18n.load_path += Dir["#{File.expand_path('config/locales')}/*.yml"]
17
17
 
18
18
  module SafePusher
19
19
  # Configuration setup
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: safe_pusher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Pollet
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-28 00:00:00.000000000 Z
11
+ date: 2022-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
@@ -178,7 +178,7 @@ dependencies:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  version: 0.16.1
181
- description:
181
+ description:
182
182
  email:
183
183
  - william.pollet@kisskissbankbank.com
184
184
  executables:
@@ -219,7 +219,7 @@ licenses:
219
219
  - MIT
220
220
  metadata:
221
221
  allowed_push_host: https://rubygems.org/
222
- post_install_message:
222
+ post_install_message:
223
223
  rdoc_options: []
224
224
  require_paths:
225
225
  - lib
@@ -235,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
235
235
  version: '0'
236
236
  requirements: []
237
237
  rubygems_version: 3.0.3
238
- signing_key:
238
+ signing_key:
239
239
  specification_version: 4
240
240
  summary: a small CLI that lints your code and run your tests before you push
241
241
  test_files: []