applb 0.1.4 → 0.1.5.beta1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86fee79fad0f566fda95a3cf048d5a46c1a223b8
4
- data.tar.gz: 67f3349fb1f006771309674e89ef7f0dd259a38d
3
+ metadata.gz: f931be37dd5f9558ffb5dd190ea0edd8e5679929
4
+ data.tar.gz: 28b6c34be530579ddffe75fd95dc881b14384b9a
5
5
  SHA512:
6
- metadata.gz: 18ffb205d52bc0566cc404ed5fae54a68193b479d4305588967a6ade7bf5370ccf11dea585b135c0ffeb2ef623821d6a0945cece2f0e94956cffc1990059138f
7
- data.tar.gz: b8487809f7eadb685e143490516d4c336881b89705926b32b21d3c10ec3e78ab7505250badf270abc2a484aa049b53150f219d85d6e57f193a7a1353c27a872f
6
+ metadata.gz: e2ef1cad90bfdb1f7e62bd3986b508dd5362036001e170ae520d26a117caab6d40ec5fc759484fa3d0dc5ea10d8dcdda48561b20ed9d908210a7745930faec56
7
+ data.tar.gz: aed017f038823a3cdcd6dbacbac833a02083a0fbc8a9118ac261c525178dff6dfb767fad098187c56a62396dce1360d1ee6863ae31280fd12edadaf3fdb55ae6
@@ -3,8 +3,7 @@ sudo: false
3
3
  rvm:
4
4
  - 2.3.3
5
5
  before_install:
6
- - openssl aes-256-cbc -K $encrypted_be43a4149bae_key -iv $encrypted_be43a4149bae_iv
7
- -in aws_config.yml.enc -out spec/aws_config.yml -d
6
+ - openssl aes-256-cbc -K $encrypted_71ed01610bce_key -iv $encrypted_71ed01610bce_iv -in aws_config.yml.enc -out spec/aws_config.yml -d
8
7
  - gem install bundler
9
8
  matrix:
10
9
  allow_failures:
Binary file
@@ -45,9 +45,9 @@ module Applb
45
45
  opts.on('', '--split-more', 'split export DSL file to 1 per load balancer') { @options[:split_more] = true }
46
46
  opts.on('', '--no-color', 'no color') { @options[:color] = false }
47
47
  opts.on('-i', '--include-names NAMES', 'include ELB v2(ALB) names', Array) { |v| @options[:includes] = v }
48
- opts.on('-x', '--exclude-names NAMES', 'exclude ELB v2(ALB) names by regex', Array) do |v|
48
+ opts.on('-x', '--exclude-names NAMES', 'exclude ELB v2(ALB) names by regex, or comma-separated ELB names', Array) do |v|
49
49
  @options[:excludes] = v.map! do |name|
50
- name =~ /\A\/(.*)\/\z/ ? Regexp.new($1) : Regexp.new("\A#{Regexp.escape(name)}\z")
50
+ name =~ %r{\A/(.*)/\z} ? Regexp.new(Regexp.last_match(1)) : /\A#{Regexp.escape(name)}\z/
51
51
  end
52
52
  end
53
53
  end
@@ -1,3 +1,3 @@
1
1
  module Applb
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5.beta1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: applb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - wata
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-11-30 00:00:00.000000000 Z
11
+ date: 2018-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-elasticloadbalancingv2
@@ -180,12 +180,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
180
180
  version: '0'
181
181
  required_rubygems_version: !ruby/object:Gem::Requirement
182
182
  requirements:
183
- - - ">="
183
+ - - ">"
184
184
  - !ruby/object:Gem::Version
185
- version: '0'
185
+ version: 1.3.1
186
186
  requirements: []
187
187
  rubyforge_project:
188
- rubygems_version: 2.6.13
188
+ rubygems_version: 2.5.1
189
189
  signing_key:
190
190
  specification_version: 4
191
191
  summary: Codenize ELB v2 (ALB)