ruby_fly 0.17.0 → 0.18.0.pre.1

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: 0fe6e348897070dfffb582651bbbf2ed67b06b05c9a5a7b03efea304a35b0db6
4
- data.tar.gz: 609abbab204d49439a99dc13d76abc3ad202bc7d9eeeae5b3a18130cabe33a9a
3
+ metadata.gz: 228ad20b9d0b9eda84606d02ff9decf2eee0d2da01dcc90b05b0437d2aa8ea15
4
+ data.tar.gz: b780d1cc02595ab36bfe6e5508b208664c28ebba12c5426446f58b17bd182c7e
5
5
  SHA512:
6
- metadata.gz: 8522cb461111ad9c972a5e07dfa95cfa18f2e301292c92d8d1f6580ec77be96c2cc25e6fcb064d682926aa1529672df42c6836923ebf80487a88bd01e4b77b3b
7
- data.tar.gz: e631e43c55b69f5e0dae573aec857319b415918d7a5f7ea53c7987acdc9933e867c62b9e505eac300b89e4421ff8fece98497567305644a758f0ad3b64e499ef
6
+ metadata.gz: 1de9a3ac60e82c21be6b023f801577cb00abf3b362b339d0ea90209eef6fbb26ad7f043ce4cda100dc7a653b52ab6db7b872db7e7d2ac814a87f7b520393c776
7
+ data.tar.gz: 70d206bfa626b62105e0b6f6c29cd83d6af7944b6c5249b965bb20778343c294877560c6894c4d9cac673ba5e03921603950decaf3c485e5e05c551a68f8f51f
@@ -1,25 +1,25 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_fly (0.17.0)
4
+ ruby_fly (0.18.0.pre.1)
5
5
  lino (>= 1.5)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (6.0.3.4)
10
+ activesupport (6.1.0)
11
11
  concurrent-ruby (~> 1.0, >= 1.0.2)
12
- i18n (>= 0.7, < 2)
13
- minitest (~> 5.1)
14
- tzinfo (~> 1.1)
15
- zeitwerk (~> 2.2, >= 2.2.2)
12
+ i18n (>= 1.6, < 2)
13
+ minitest (>= 5.1)
14
+ tzinfo (~> 2.0)
15
+ zeitwerk (~> 2.3)
16
16
  addressable (2.7.0)
17
17
  public_suffix (>= 2.0.2, < 5.0)
18
18
  colored2 (3.1.2)
19
19
  concurrent-ruby (1.1.7)
20
20
  diff-lcs (1.4.4)
21
- excon (0.78.0)
22
- faraday (1.1.0)
21
+ excon (0.78.1)
22
+ faraday (1.2.0)
23
23
  multipart-post (>= 1.2, < 3)
24
24
  ruby2_keywords
25
25
  gem-release (2.2.0)
@@ -37,7 +37,7 @@ GEM
37
37
  sawyer (~> 0.8.0, >= 0.5.3)
38
38
  open4 (1.3.4)
39
39
  public_suffix (4.0.6)
40
- rake (13.0.1)
40
+ rake (13.0.3)
41
41
  rake_circle_ci (0.7.0)
42
42
  colored2 (~> 3.1)
43
43
  excon (~> 0.72)
@@ -73,10 +73,9 @@ GEM
73
73
  addressable (>= 2.3.5)
74
74
  faraday (> 0.8, < 2.0)
75
75
  sshkey (2.0.0)
76
- thread_safe (0.3.6)
77
- tzinfo (1.2.8)
78
- thread_safe (~> 0.1)
79
- zeitwerk (2.4.1)
76
+ tzinfo (2.0.4)
77
+ concurrent-ruby (~> 1.0)
78
+ zeitwerk (2.4.2)
80
79
 
81
80
  PLATFORMS
82
81
  ruby
@@ -92,4 +91,4 @@ DEPENDENCIES
92
91
  ruby_fly!
93
92
 
94
93
  BUNDLED WITH
95
- 2.1.4
94
+ 2.2.3
@@ -24,12 +24,14 @@ module RubyFly
24
24
  vars = opts[:vars] || {}
25
25
  var_files = opts[:var_files] || []
26
26
  non_interactive = opts[:non_interactive]
27
+ team = opts[:team]
27
28
 
28
29
  builder
29
30
  .with_subcommand('set-pipeline') do |sub|
30
31
  sub = sub.with_option('-t', target)
31
32
  sub = sub.with_option('-p', pipeline)
32
33
  sub = sub.with_option('-c', config)
34
+ sub = sub.with_option('--team', team) if team
33
35
  vars.each do |key, value|
34
36
  sub = sub.with_option('-v', "'#{key}=#{value}'")
35
37
  end
@@ -19,11 +19,13 @@ module RubyFly
19
19
 
20
20
  target = opts[:target]
21
21
  pipeline = opts[:pipeline]
22
+ team = opts[:team]
22
23
 
23
24
  builder
24
25
  .with_subcommand('unpause-pipeline') do |sub|
25
26
  sub = sub.with_option('-t', target)
26
27
  sub = sub.with_option('-p', pipeline)
28
+ sub = sub.with_option('--team', team) if team
27
29
  sub
28
30
  end
29
31
  end
@@ -1,3 +1,3 @@
1
1
  module RubyFly
2
- VERSION = '0.17.0'
2
+ VERSION = '0.18.0.pre.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_fly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.0.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toby Clemson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-24 00:00:00.000000000 Z
11
+ date: 2020-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lino
@@ -189,9 +189,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
189
189
  version: '2.6'
190
190
  required_rubygems_version: !ruby/object:Gem::Requirement
191
191
  requirements:
192
- - - ">="
192
+ - - ">"
193
193
  - !ruby/object:Gem::Version
194
- version: '0'
194
+ version: 1.3.1
195
195
  requirements: []
196
196
  rubygems_version: 3.0.1
197
197
  signing_key: