safe_pusher 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/safe_pusher.rb +2 -2
- data/lib/safe_pusher/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1d2d880ef780ab2b1ab6d8fc42f8281128383861044ae9af138ecce68cbf5d3
|
|
4
|
+
data.tar.gz: 211e95e60f85ed66e54976e6df94051088fbd2762ba53829d2b30344cdec6d36
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 299bb588f9c935165dd133845437d834c3371ebfbc9c288370981f3050621e62b04c8604c261509302609b4900cec3cf5c4db7be7838332c13091d359e2b50bd
|
|
7
|
+
data.tar.gz: f15e6eebe00dd93bf08105ecf710af9d1fcadc31fb9e789ceb687329ddad6b36dea7545d6dc59ebb0bb4d1e83b154f394750862ce833e2f77cbde6dfe15a9de1
|
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.
|
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.
|
|
16
|
-
I18n.load_path += Dir[File.expand_path('config/locales')
|
|
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
|
data/lib/safe_pusher/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.4.3
|
|
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:
|
|
11
|
+
date: 2021-02-01 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: []
|