gate 0.7.1 → 0.7.2
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/.circleci/config.yml +3 -1
- data/.circleci/gem_credentials +2 -0
- data/lib/gate/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 764942a00c33c244c8aefe5ad380fbdfa21d71c1fd8709c96c242b9ce23080a6
|
|
4
|
+
data.tar.gz: e9bbca7a93185da11b814a9de05d23882da41aa1e0ccc0100f5897a3e42a1cdb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0f64707d6a9b9bc1267849b3f3a41a0c59f2a7c8424dfd11f084db65c15292c57915b360aa2a203fdfa738214d13b4b878a7a7d1b1f03c70a8bfabb055d91be
|
|
7
|
+
data.tar.gz: 1588d4cbdbdbdcc420b776e84e47436bd33e1c7d5dae8df5a74cdf5c4152566ea7f2a041a568d985c87576ae858afe52217f6d3c7560ebaf970d3c0a209e4e17
|
data/.circleci/config.yml
CHANGED
|
@@ -28,10 +28,12 @@ jobs:
|
|
|
28
28
|
name: Configure rubygems
|
|
29
29
|
command: |
|
|
30
30
|
mkdir ~/.gem
|
|
31
|
-
|
|
31
|
+
cat .circleci/gem_credentials | sed -e "s/__RUBYGEMS_API_KEY__/${RUBYGEMS_API_KEY}/" > ~/.gem/credentials
|
|
32
32
|
chmod 0600 ~/.gem/credentials
|
|
33
|
+
- run: bundle config gem.push_key rubygems
|
|
33
34
|
- run: bundle install
|
|
34
35
|
- run: bundle exec rake release
|
|
36
|
+
- run: shred -u ~/.gem/credentials
|
|
35
37
|
|
|
36
38
|
workflows:
|
|
37
39
|
version: 2
|
data/lib/gate/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Dudulski
|
|
@@ -102,6 +102,7 @@ extensions: []
|
|
|
102
102
|
extra_rdoc_files: []
|
|
103
103
|
files:
|
|
104
104
|
- ".circleci/config.yml"
|
|
105
|
+
- ".circleci/gem_credentials"
|
|
105
106
|
- ".codeclimate.yml"
|
|
106
107
|
- ".gitignore"
|
|
107
108
|
- ".rubocop.yml"
|