gate 0.6.0 → 0.7.0
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 +46 -4
- data/lib/gate/command.rb +6 -0
- data/lib/gate/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 846471b7a35837bf5c77b0b05678371908f7e396
|
|
4
|
+
data.tar.gz: 4c73630b6395728d8f402a30bb63edd10ff35a25
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 180f36ebb806f3c35001100d8d43e00a81296cee6fcae974526401b3a025db17679db3d3c23b9007597a972ef5f9fbf9ec942c246c3c0a5d7cd7a2f5cd5526fa
|
|
7
|
+
data.tar.gz: d0733dc8579cadb93e47e3131d047cf53464363694c8bf751faa5c6f4898af6365501698f6b7b35dda4498c1888b8e6dbb6d44bfab965c1915f3ebeaf1d6ca6f
|
data/.circleci/config.yml
CHANGED
|
@@ -1,10 +1,52 @@
|
|
|
1
|
+
build_steps: &build_steps
|
|
2
|
+
working_directory: ~/repo
|
|
3
|
+
steps:
|
|
4
|
+
- checkout
|
|
5
|
+
- run: bundle install
|
|
6
|
+
- run: bundle exec rake
|
|
7
|
+
|
|
1
8
|
version: 2
|
|
2
9
|
jobs:
|
|
3
|
-
|
|
10
|
+
test_ruby-2.3:
|
|
11
|
+
<<: *build_steps
|
|
4
12
|
docker:
|
|
5
|
-
- image: circleci/ruby:2.
|
|
13
|
+
- image: circleci/ruby:2.3
|
|
14
|
+
test_ruby-2.4:
|
|
15
|
+
<<: *build_steps
|
|
16
|
+
docker:
|
|
17
|
+
- image: circleci/ruby:2.4
|
|
18
|
+
test_ruby-2.5:
|
|
19
|
+
<<: *build_steps
|
|
20
|
+
docker:
|
|
21
|
+
- image: circleci/ruby:2.5
|
|
22
|
+
release:
|
|
23
|
+
docker:
|
|
24
|
+
- image: circleci/ruby:2.5
|
|
6
25
|
steps:
|
|
26
|
+
- run:
|
|
27
|
+
name: Authenticate rubygems
|
|
28
|
+
command: |
|
|
29
|
+
mkdir "~/.gem"
|
|
30
|
+
echo "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}" > ~/.gem/credentials
|
|
31
|
+
chmod 0600 ~/.gem/credentials
|
|
7
32
|
- checkout
|
|
8
|
-
- run: gem install bundler
|
|
9
33
|
- run: bundle install
|
|
10
|
-
- run: bundle exec rake
|
|
34
|
+
- run: bundle exec rake release
|
|
35
|
+
|
|
36
|
+
workflows:
|
|
37
|
+
version: 2
|
|
38
|
+
test_and_release:
|
|
39
|
+
jobs:
|
|
40
|
+
- test_ruby-2.3
|
|
41
|
+
- test_ruby-2.4
|
|
42
|
+
- test_ruby-2.5
|
|
43
|
+
- release:
|
|
44
|
+
requires:
|
|
45
|
+
- test_ruby-2.3
|
|
46
|
+
- test_ruby-2.4
|
|
47
|
+
- test_ruby-2.5
|
|
48
|
+
filters:
|
|
49
|
+
tags:
|
|
50
|
+
only: /^v.*/
|
|
51
|
+
branches:
|
|
52
|
+
ignore: /.*/
|
data/lib/gate/command.rb
CHANGED
data/lib/gate/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Dudulski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-04-
|
|
11
|
+
date: 2018-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-validation
|
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
136
136
|
version: '0'
|
|
137
137
|
requirements: []
|
|
138
138
|
rubyforge_project:
|
|
139
|
-
rubygems_version: 2.6.14
|
|
139
|
+
rubygems_version: 2.6.14.1
|
|
140
140
|
signing_key:
|
|
141
141
|
specification_version: 4
|
|
142
142
|
summary: CQRS Command
|