skull_island 2.2.1 → 2.3.3

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: '08939c35fee9b8e4c4365c3f723fd72613ab4f5294df58e8f1d4512f67a3f259'
4
- data.tar.gz: 180ef4c7198571533c8c1744224014df3fb40b0546b085b941bb13aa119f2821
3
+ metadata.gz: 4c60e10eb38126c1a9f4cf6d513f1f7570021bb58ef4ebe5269c8b07899f912b
4
+ data.tar.gz: 5d9a98c6c61df6d7c4785d65a7204bdd7fdbe42693dce28b965c391207111f38
5
5
  SHA512:
6
- metadata.gz: ca8d64d98746acb99b690cdfa363eee82faf8e08c4046ef5916cdd8db70d578e98ef34e8a31800064aa37c6b11fa01540d205b60757ebdfa634be8f132a3d4a7
7
- data.tar.gz: f31992f4bc045905976ce6b73920605dec99a138fe4cfefde2f061b3f601d3a86ba9b0f202548aebfac54ff9daad61673a1114d53e73f308781b2961e5795c72
6
+ metadata.gz: c488e0fc70f8e06c93615a40e74b628354340f7e07289bca47129eca487275f6a448811537c48ce3a92d495ae1fcf96bdbc494ba7f5f7bb3edf39334c02c02fc
7
+ data.tar.gz: 84f97ff13a4f91dcb0f8c47781cb961c544b5954d65c05d69b3a545e26ddacaa59e8f841a039fd9d3a5c2352e930dcb999db5a3438554636280e9b007d42b516
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.5
2
+ TargetRubyVersion: 3.0
3
3
  NewCops: enable
4
4
 
5
5
  Metrics/MethodLength:
data/.travis.yml CHANGED
@@ -1,10 +1,23 @@
1
+ env:
2
+ global:
3
+ - CC_TEST_REPORTER_ID=403b284cf8ed6f468a3d861a70b02c6cdec30225dfb435861b19a12cafbef426
1
4
  language: ruby
2
5
  cache: bundler
3
6
  rvm:
4
- - 2.5
5
- - 2.6
6
- - 2.7
7
- before_install: gem install bundler -v '~> 2.0'
7
+ - 3.0
8
+
9
+ before_install: gem install bundler -v '~> 2.2'
10
+
11
+ before_script:
12
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
13
+ - chmod +x ./cc-test-reporter
14
+ - ./cc-test-reporter before-build
15
+
16
+ after_script:
17
+ - ./cc-test-reporter format-coverage -t cobertura coverage/coverage.xml
18
+ - ./cc-test-reporter upload-coverage
19
+ - exit $TRAVIS_TEST_RESULT
20
+
8
21
  deploy:
9
22
  provider: rubygems
10
23
  api_key:
@@ -12,5 +25,5 @@ deploy:
12
25
  gem: skull_island
13
26
  on:
14
27
  tags: true
15
- rvm: 2.6
28
+ rvm: 3.0
16
29
  repo: jgnagy/skull_island
data/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM ruby:2.5-alpine
1
+ FROM ruby:3.0-alpine
2
2
  LABEL maintainer="Jonathan Gnagy <jonathan.gnagy@gmail.com>"
3
3
 
4
4
  COPY . /install
data/Gemfile.lock CHANGED
@@ -1,33 +1,32 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- skull_island (2.2.1)
4
+ skull_island (2.3.3)
5
5
  deepsort (~> 0.4)
6
6
  erubi (~> 1.8)
7
- json (~> 2.1)
8
7
  linguistics (~> 2.1)
9
8
  rest-client (~> 2.1)
10
9
  thor (~> 1.0)
11
10
  will_paginate (~> 3.1)
11
+ yajl-ruby (~> 1.4)
12
12
 
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- activesupport (5.2.4.4)
16
+ activesupport (5.2.4.5)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 0.7, < 2)
19
19
  minitest (~> 5.1)
20
20
  tzinfo (~> 1.1)
21
21
  addressable (2.7.0)
22
22
  public_suffix (>= 2.0.2, < 5.0)
23
- ast (2.4.1)
23
+ ast (2.4.2)
24
24
  concurrent-ruby (1.1.8)
25
- coveralls (0.7.1)
26
- multi_json (~> 1.3)
27
- rest-client
28
- simplecov (>= 0.7)
29
- term-ansicolor
30
- thor
25
+ coveralls_reborn (0.20.0)
26
+ simplecov (>= 0.18.1, < 0.22.0)
27
+ term-ansicolor (~> 1.6)
28
+ thor (>= 0.20.3, < 2.0)
29
+ tins (~> 1.16)
31
30
  deepsort (0.4.5)
32
31
  diff-lcs (1.4.4)
33
32
  docile (1.3.5)
@@ -53,7 +52,7 @@ GEM
53
52
  http-accept (1.7.0)
54
53
  http-cookie (1.0.3)
55
54
  domain_name (~> 0.5)
56
- i18n (1.8.7)
55
+ i18n (1.8.9)
57
56
  concurrent-ruby (~> 1.0)
58
57
  json (2.5.1)
59
58
  json_pure (2.5.1)
@@ -64,7 +63,7 @@ GEM
64
63
  loggability (0.18.2)
65
64
  mime-types (3.3.1)
66
65
  mime-types-data (~> 3.2015)
67
- mime-types-data (3.2020.1104)
66
+ mime-types-data (3.2021.0212)
68
67
  minitest (5.14.3)
69
68
  multi_json (1.15.0)
70
69
  multipart-post (2.1.1)
@@ -96,10 +95,10 @@ GEM
96
95
  rspec-expectations (3.10.1)
97
96
  diff-lcs (>= 1.2.0, < 2.0)
98
97
  rspec-support (~> 3.10.0)
99
- rspec-mocks (3.10.1)
98
+ rspec-mocks (3.10.2)
100
99
  diff-lcs (>= 1.2.0, < 2.0)
101
100
  rspec-support (~> 3.10.0)
102
- rspec-support (3.10.1)
101
+ rspec-support (3.10.2)
103
102
  rubocop (0.93.1)
104
103
  parallel (~> 1.10)
105
104
  parser (>= 2.7.1.5)
@@ -109,7 +108,7 @@ GEM
109
108
  rubocop-ast (>= 0.6.0)
110
109
  ruby-progressbar (~> 1.7)
111
110
  unicode-display_width (>= 1.4.0, < 2.0)
112
- rubocop-ast (1.4.0)
111
+ rubocop-ast (1.4.1)
113
112
  parser (>= 2.7.1.5)
114
113
  ruby-progressbar (1.11.0)
115
114
  ruby2_keywords (0.0.4)
@@ -117,12 +116,14 @@ GEM
117
116
  docile (~> 1.1)
118
117
  simplecov-html (~> 0.11)
119
118
  simplecov_json_formatter (~> 0.1)
119
+ simplecov-cobertura (1.4.2)
120
+ simplecov (~> 0.8)
120
121
  simplecov-html (0.12.3)
121
122
  simplecov_json_formatter (0.1.2)
122
123
  sync (0.5.0)
123
124
  term-ansicolor (1.7.1)
124
125
  tins (~> 1.0)
125
- thor (1.0.1)
126
+ thor (1.1.0)
126
127
  thread_safe (0.3.6)
127
128
  tins (1.28.0)
128
129
  sync
@@ -142,6 +143,7 @@ GEM
142
143
  unicode-display_width (1.7.0)
143
144
  websocket (1.2.9)
144
145
  will_paginate (3.3.0)
146
+ yajl-ruby (1.4.1)
145
147
  yard (0.9.26)
146
148
 
147
149
  PLATFORMS
@@ -149,14 +151,15 @@ PLATFORMS
149
151
 
150
152
  DEPENDENCIES
151
153
  bundler (~> 2.0)
152
- coveralls (~> 0.7)
154
+ coveralls_reborn (~> 0.20)
153
155
  rake (~> 13.0)
154
156
  rspec (~> 3.0)
155
157
  rubocop (~> 0.50)
156
- simplecov (~> 0.17)
158
+ simplecov (~> 0.21)
159
+ simplecov-cobertura (~> 1.3)
157
160
  skull_island!
158
161
  travis (~> 1.8)
159
162
  yard (~> 0.9.20)
160
163
 
161
164
  BUNDLED WITH
162
- 2.2.6
165
+ 2.2.11
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Skull Island
2
2
 
3
- A full-featured SDK for [Kong](https://konghq.com/kong/) 2.2.x (with support 2.0.x and 2.1.x, and for migrating from 0.14.x, 1.1.x, 1.2.x, 1.4.x, and 1.5.x). Note that this is unofficial (meaning this project is in no way officially endorsed, recommended, or related to Kong [as a company](https://konghq.com/) or an [open-source project](https://github.com/Kong/kong)). It is also in no way related to the [pet toy company](https://www.kongcompany.com/) by the same name (but hopefully that was obvious).
3
+ A full-featured SDK for [Kong](https://konghq.com/kong/) 2.3.x (with support 2.0.x, 2.1.x, and 2.2.x, and for migrating from 0.14.x, 1.1.x, 1.2.x, 1.4.x, and 1.5.x). Note that this is unofficial (meaning this project is in no way officially endorsed, recommended, or related to Kong [as a company](https://konghq.com/) or an [open-source project](https://github.com/Kong/kong)). It is also in no way related to the [pet toy company](https://www.kongcompany.com/) by the same name (but hopefully that was obvious).
4
4
 
5
5
  ![Gem](https://img.shields.io/gem/v/skull_island)
6
6
  ![Travis (.org)](https://img.shields.io/travis/jgnagy/skull_island)
@@ -21,7 +21,9 @@ skull_island help
21
21
 
22
22
  ### Ruby Gem Install / SDK
23
23
 
24
- Either:
24
+ **Note:** Starting with 2.3.0, Skull Island only supports Ruby 3.0+. If you need to use Ruby 2.x, you'll need to use a gem version < 2.3.0. I'll maintain the 2.2.x line for Ruby 2.x compatibility for 2021.
25
+
26
+ To use the Skull Island gem, either:
25
27
 
26
28
  ```sh
27
29
  gem install skull_island
@@ -30,7 +32,7 @@ gem install skull_island
30
32
  Or add this to your Gemfile:
31
33
 
32
34
  ```ruby
33
- gem 'skull_island', '~> 2.2'
35
+ gem 'skull_island', '~> 2.3'
34
36
  ```
35
37
 
36
38
  Or add this to your .gemspec:
@@ -38,7 +40,7 @@ Or add this to your .gemspec:
38
40
  ```ruby
39
41
  Gem::Specification.new do |spec|
40
42
  # ...
41
- spec.add_runtime_dependency 'skull_island', '~> 2.2'
43
+ spec.add_runtime_dependency 'skull_island', '~> 2.3'
42
44
  # ...
43
45
  end
44
46
  ```
@@ -149,7 +151,7 @@ When using the `project` feature of Skull Island, the CLI tool will automaticall
149
151
 
150
152
  ### Migrating
151
153
 
152
- With Skull Island, it is possible to migrate a configuration from a 0.14.x, 1.1.x, 1.2.x, 1.4.x, or 1.5.x gateway to the most recent compatible gateway. If you have a previous export, you can just run `skull_island migrate /path/to/export.yml` and you'll receive a 2.2 compatible config on standard out. If you'd prefer, you can have that config written to a file as well (just like the export command) like so:
154
+ With Skull Island, it is possible to migrate a configuration from a 0.14.x, 1.1.x, 1.2.x, 1.4.x, or 1.5.x gateway to the most recent compatible gateway. If you have a previous export, you can just run `skull_island migrate /path/to/export.yml` and you'll receive a 2.3 compatible config on standard out. If you'd prefer, you can have that config written to a file as well (just like the export command) like so:
153
155
 
154
156
  ```sh
155
157
  skull_island migrate /path/to/export.yml /output/location/migrated.yml
@@ -159,7 +161,7 @@ While this hasn't been heavily tested for all possible use-cases, any configurat
159
161
 
160
162
  If you don't have a previous export, you'll need to install an older version of this gem using something like `gem install --version '~> 0.14' skull_island`, then perform an `export`, then you can switch back to the latest version of the gem for migrating and importing.
161
163
 
162
- While it would be possible to make migration _automatic_ for the `import` command, `skull_island` intentionally doesn't do this to avoid the appearance that the config is losslessly compatible across versions. In reality, the newer config version has additional features (like tagging) that are used heavily by skull_island. It makes sense to this author to maintain the migration component and the normal functionality as distinct features to encourage the use of the newer capabilities in 1.1 and beyond. That said, Skull Island does allow 1.x, 2.0.x, and 2.1.x version configurations to be applied to 2.2 gateways, but not the opposite.
164
+ While it would be possible to make migration _automatic_ for the `import` command, `skull_island` intentionally doesn't do this to avoid the appearance that the config is losslessly compatible across versions. In reality, the newer config version has additional features (like tagging) that are used heavily by skull_island. It makes sense to this author to maintain the migration component and the normal functionality as distinct features to encourage the use of the newer capabilities in 1.1 and beyond. That said, Skull Island does allow 1.x, 2.0.x, 2.1.x, and 2.2.x version configurations to be applied to 2.3 gateways, but not the opposite.
163
165
 
164
166
  ### Reset A Gateway
165
167
 
@@ -188,7 +190,7 @@ If you're wondering what version of `skull_island` is installed, use:
188
190
  ```sh
189
191
  $ skull_island version
190
192
 
191
- SkullIsland Version: 2.2.0
193
+ SkullIsland Version: 2.3.0
192
194
  ```
193
195
 
194
196
  ### File Format
@@ -197,7 +199,7 @@ The import/export/migrate CLI functions produce YAML with support for embedded R
197
199
 
198
200
  ```yaml
199
201
  ---
200
- version: '2.2'
202
+ version: '2.3'
201
203
  project: FooV2
202
204
  certificates: []
203
205
  ca_certificates:
@@ -398,7 +400,7 @@ service.routes.size
398
400
  # => 4
399
401
  ```
400
402
 
401
- From here, the SDK mostly wraps the attributes described in the [Kong API Docs](https://docs.konghq.com/2.2.x/admin-api/). For simplicity, I'll go over the resource types and attributes this SDK supports manipulating. Rely on the API documentation to determine which attributes are required and under which conditions.
403
+ From here, the SDK mostly wraps the attributes described in the [Kong API Docs](https://docs.konghq.com/2.3.x/admin-api/). For simplicity, I'll go over the resource types and attributes this SDK supports manipulating. Rely on the API documentation to determine which attributes are required and under which conditions.
402
404
 
403
405
  #### CA Certificates
404
406
 
data/lib/skull_island.rb CHANGED
@@ -9,7 +9,6 @@ Hash.include CoreExtensions::Hash::Pruning
9
9
  # Standard Library Requirements
10
10
  require 'date'
11
11
  require 'digest'
12
- require 'json'
13
12
  require 'singleton'
14
13
  require 'uri'
15
14
  require 'yaml'
@@ -22,6 +21,7 @@ Linguistics.use(:en)
22
21
  require 'rest-client'
23
22
  require 'will_paginate'
24
23
  require 'will_paginate/array'
24
+ require 'yajl/json_gem'
25
25
 
26
26
  # Internal Requirements
27
27
  require 'skull_island/version'
@@ -30,7 +30,7 @@ module SkullIsland
30
30
 
31
31
  validate_server_version
32
32
 
33
- output = { 'version' => '2.2' }
33
+ output = { 'version' => '2.3' }
34
34
  output['project'] = options['project'] if options['project']
35
35
 
36
36
  [
@@ -191,7 +191,7 @@ module SkullIsland
191
191
  end
192
192
 
193
193
  def validate_config_version(version)
194
- if version && ['1.1', '1.2', '1.4', '1.5', '2.0', '2.1', '2.2'].include?(version)
194
+ if version && ['1.1', '1.2', '1.4', '1.5', '2.0', '2.1', '2.2', '2.3'].include?(version)
195
195
  validate_server_version
196
196
  elsif version && ['0.14', '1.0'].include?(version)
197
197
  warn '[CRITICAL] Config version is too old. Try `migrate` instead of `import`.'
@@ -214,7 +214,7 @@ module SkullIsland
214
214
  def validate_server_version
215
215
  server_version = SkullIsland::APIClient.about_service['version']
216
216
  case server_version
217
- when /^2.[12]/
217
+ when /^2.[123]/
218
218
  true
219
219
  when /^2.0/
220
220
  warn "[WARN] Older server version #{server_version} detected! " \
@@ -215,6 +215,9 @@ module SkullIsland
215
215
  @api_client.invalidate_cache_for(self.class.relative_uri.to_s) # clear any collection class
216
216
  @tainted = false
217
217
  true
218
+ rescue RestClient::BadRequest => e
219
+ warn "[WARN] Failed to save #{self.class} via #{new? ? save_uri : relative_uri} with " \
220
+ "'#{e.message}':\n#{saveable_data.to_yaml}\n\nReceived: #{e.inspect}"
218
221
  end
219
222
 
220
223
  def save_uri
@@ -11,7 +11,7 @@ module SkullIsland
11
11
  attr_reader :max_size, :keys
12
12
 
13
13
  # @raise [Exceptions::InvalidCacheSize] if the max_size isn't an Integer
14
- def initialize(max_size = 100)
14
+ def initialize(max_size = 10_000)
15
15
  raise Exceptions::InvalidCacheSize unless max_size.is_a?(Integer)
16
16
 
17
17
  @max_size = max_size
@@ -16,7 +16,7 @@ module SkullIsland
16
16
  # Ensure that required properties are set before saving
17
17
  def validate_required_properties(data)
18
18
  required_properties.each do |name, _value|
19
- raise Exceptions::InvalidArguments if data[name.to_s].nil?
19
+ raise Exceptions::InvalidArguments, "Missing argument: #{name}" if data[name.to_s].nil?
20
20
  end
21
21
  end
22
22
 
@@ -3,7 +3,7 @@
3
3
  module SkullIsland
4
4
  VERSION = [
5
5
  2, # Major
6
- 2, # Minor
7
- 1 # Patch
6
+ 3, # Minor
7
+ 3 # Patch
8
8
  ].join('.')
9
9
  end
data/skull_island.gemspec CHANGED
@@ -24,22 +24,23 @@ Gem::Specification.new do |spec|
24
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
25
  spec.require_paths = ['lib']
26
26
 
27
- spec.required_ruby_version = '~> 2.5'
27
+ spec.required_ruby_version = '~> 3.0'
28
28
 
29
29
  spec.add_runtime_dependency 'deepsort', '~> 0.4'
30
30
  spec.add_runtime_dependency 'erubi', '~> 1.8'
31
- spec.add_runtime_dependency 'json', '~> 2.1'
32
31
  spec.add_runtime_dependency 'linguistics', '~> 2.1'
33
32
  spec.add_runtime_dependency 'rest-client', '~> 2.1'
34
33
  spec.add_runtime_dependency 'thor', '~> 1.0'
35
34
  spec.add_runtime_dependency 'will_paginate', '~> 3.1'
35
+ spec.add_runtime_dependency 'yajl-ruby', '~> 1.4'
36
36
 
37
37
  spec.add_development_dependency 'bundler', '~> 2.0'
38
- spec.add_development_dependency 'coveralls', '~> 0.7'
38
+ spec.add_development_dependency 'coveralls_reborn', '~> 0.20'
39
39
  spec.add_development_dependency 'rake', '~> 13.0'
40
40
  spec.add_development_dependency 'rspec', '~> 3.0'
41
41
  spec.add_development_dependency 'rubocop', '~> 0.50'
42
- spec.add_development_dependency 'simplecov', '~> 0.17'
42
+ spec.add_development_dependency 'simplecov', '~> 0.21'
43
+ spec.add_development_dependency 'simplecov-cobertura', '~> 1.3'
43
44
  spec.add_development_dependency 'travis', '~> 1.8'
44
45
  spec.add_development_dependency 'yard', '~> 0.9.20'
45
46
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skull_island
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-01-20 00:00:00.000000000 Z
11
+ date: 2021-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deepsort
@@ -39,7 +39,7 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.8'
41
41
  - !ruby/object:Gem::Dependency
42
- name: json
42
+ name: linguistics
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
@@ -53,7 +53,7 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '2.1'
55
55
  - !ruby/object:Gem::Dependency
56
- name: linguistics
56
+ name: rest-client
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
@@ -67,47 +67,47 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '2.1'
69
69
  - !ruby/object:Gem::Dependency
70
- name: rest-client
70
+ name: thor
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '2.1'
75
+ version: '1.0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '2.1'
82
+ version: '1.0'
83
83
  - !ruby/object:Gem::Dependency
84
- name: thor
84
+ name: will_paginate
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.0'
89
+ version: '3.1'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '1.0'
96
+ version: '3.1'
97
97
  - !ruby/object:Gem::Dependency
98
- name: will_paginate
98
+ name: yajl-ruby
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '3.1'
103
+ version: '1.4'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '3.1'
110
+ version: '1.4'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: bundler
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -123,19 +123,19 @@ dependencies:
123
123
  - !ruby/object:Gem::Version
124
124
  version: '2.0'
125
125
  - !ruby/object:Gem::Dependency
126
- name: coveralls
126
+ name: coveralls_reborn
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: '0.7'
131
+ version: '0.20'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: '0.7'
138
+ version: '0.20'
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: rake
141
141
  requirement: !ruby/object:Gem::Requirement
@@ -184,14 +184,28 @@ dependencies:
184
184
  requirements:
185
185
  - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: '0.17'
187
+ version: '0.21'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: '0.21'
195
+ - !ruby/object:Gem::Dependency
196
+ name: simplecov-cobertura
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - "~>"
200
+ - !ruby/object:Gem::Version
201
+ version: '1.3'
188
202
  type: :development
189
203
  prerelease: false
190
204
  version_requirements: !ruby/object:Gem::Requirement
191
205
  requirements:
192
206
  - - "~>"
193
207
  - !ruby/object:Gem::Version
194
- version: '0.17'
208
+ version: '1.3'
195
209
  - !ruby/object:Gem::Dependency
196
210
  name: travis
197
211
  requirement: !ruby/object:Gem::Requirement
@@ -299,7 +313,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
299
313
  requirements:
300
314
  - - "~>"
301
315
  - !ruby/object:Gem::Version
302
- version: '2.5'
316
+ version: '3.0'
303
317
  required_rubygems_version: !ruby/object:Gem::Requirement
304
318
  requirements:
305
319
  - - ">="