maven-tools 1.0.0.rc4 → 1.0.0.rc5

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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/lib/maven/tools/dsl.rb +27 -8
  3. data/lib/maven/tools/gemfile_lock.rb +1 -1
  4. data/lib/maven/tools/version.rb +1 -1
  5. data/lib/maven/tools/versions.rb +1 -1
  6. data/spec/gemfile/pom.xml +1 -1
  7. data/spec/gemfile_include_jars/pom.xml +1 -1
  8. data/spec/gemfile_with_access_to_model/pom.xml +1 -1
  9. data/spec/gemfile_with_custom_source/pom.xml +2 -2
  10. data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +2 -2
  11. data/spec/gemfile_with_extras/pom.xml +1 -1
  12. data/spec/gemfile_with_groups/pom.xml +17 -1
  13. data/spec/gemfile_with_groups_and_lockfile/pom.xml +17 -1
  14. data/spec/gemfile_with_lock/pom.xml +1 -1
  15. data/spec/gemfile_with_path/pom.xml +6 -1
  16. data/spec/gemfile_with_source/pom.xml +2 -2
  17. data/spec/gemfile_with_source_and_custom_jarname/pom.xml +2 -2
  18. data/spec/gemfile_with_source_and_no_jar/pom.xml +1 -1
  19. data/spec/gemfile_with_test_group/Gemfile +27 -0
  20. data/spec/gemfile_with_test_group/Gemfile.lock +133 -0
  21. data/spec/gemfile_with_test_group/Mavenfile +5 -0
  22. data/spec/gemfile_with_test_group/pom.xml +504 -0
  23. data/spec/gemfile_without_gemspec/Gemfile +5 -0
  24. data/spec/gemfile_without_gemspec/Mavenfile +5 -0
  25. data/spec/gemfile_without_gemspec/pom.xml +52 -0
  26. data/spec/gemspec/pom.xml +1 -1
  27. data/spec/gemspec_in_profile/pom.xml +1 -1
  28. data/spec/gemspec_include_jars/pom.xml +1 -1
  29. data/spec/gemspec_no_rubygems_repo/pom.xml +1 -1
  30. data/spec/gemspec_prerelease/pom.xml +1 -1
  31. data/spec/gemspec_prerelease_snapshot/pom.xml +1 -1
  32. data/spec/gemspec_with_access_to_model/pom.xml +1 -1
  33. data/spec/gemspec_with_custom_source/pom.xml +2 -2
  34. data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +2 -2
  35. data/spec/gemspec_with_extras/pom.xml +1 -1
  36. data/spec/gemspec_with_prereleased_dependency/pom.xml +1 -1
  37. data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +1 -1
  38. data/spec/gemspec_with_source/pom.xml +2 -2
  39. data/spec/gemspec_with_source_and_custom_jarname/pom.xml +2 -2
  40. data/spec/gemspec_with_source_and_no_jar/pom.xml +1 -1
  41. metadata +16 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b88274c070f020d83b32af74fdae08b890d0d118
4
- data.tar.gz: fa159eb32218f2b55afbc28295a2d951f7d24ed0
3
+ metadata.gz: 824ec21a7dc9f640e0054c0d6169257d278a8e16
4
+ data.tar.gz: 2db21fe36ab4f4eaeea4c3a43bcd1e350fa7a6ef
5
5
  SHA512:
6
- metadata.gz: 1230de82f0cd3b77762874d3b465f8f6eb3c3667b8e5d9c76733db31e9823728dd60eb51193e7104593ec818e2e763877094f44104612b027f51fc2bc55d82d1
7
- data.tar.gz: d9e1f204daa83cfde5c71da23c1d573b93c5c9d96b251578fc13fc003c5d3c6798d2b6f737ee968ee517dfca2fa026a022e9de42044cdbf948df1d7092723e6a
6
+ metadata.gz: 9a633083e857fa127017fd8f65eecd835e83c87524612aae4b374dbd28685ef658d3be9f508cd308166efd1ee1f4443a5d1722107e20dac4b29f3758a78047a8
7
+ data.tar.gz: facb9734d8a29364479fb433f010d10eebfed726b572a6823b1266d943c712e7648b1e7efbee87ca0912dbcb7e9ae2d704c6410d6fe58b00d9b16d94ea38cefe
@@ -146,6 +146,10 @@ module Maven
146
146
  end
147
147
  else
148
148
  setup_gem_support( options )
149
+
150
+ jruby_plugin!( :gem ) do
151
+ execute_goal :initialize
152
+ end
149
153
  end
150
154
 
151
155
  if pr && pr.dependencies.empty?
@@ -166,7 +170,7 @@ module Maven
166
170
 
167
171
  if @has_path or @has_git
168
172
  gem 'bundler', VERSIONS[ :bundler_version ], :scope => :provided unless gem? 'bundler'
169
- jruby_plugin :gem do
173
+ jruby_plugin! :gem do
170
174
  execute_goal :exec, :filename => 'bundle', :args => 'install'
171
175
  end
172
176
  end
@@ -187,11 +191,19 @@ module Maven
187
191
  scope.match /#{sc}/
188
192
  end.collect { |d| d.artifact_id }
189
193
  locked.dependency_hull( names ).each do |name, version|
190
- gem name, version, options unless model.artifact_id == name && model.group_id == 'rubygems'
194
+ gem( name, version, options ) unless has_gem( name )
191
195
  end
192
196
  end
193
197
  private :add_scoped_hull
194
198
 
199
+ def has_gem( name )
200
+ ( model.artifact_id == name && model.group_id == 'rubygems' ) ||
201
+ ( @current.dependencies.detect do |d|
202
+ d.artifact_id == name && d.group_id == 'rubygems'
203
+ end != nil )
204
+ end
205
+ private :has_gem
206
+
195
207
  def setup_gem_support( options, spec = nil, config = {} )
196
208
  unless model.properties.member?( 'project.build.sourceEncoding' )
197
209
  properties( 'project.build.sourceEncoding' => 'utf-8' )
@@ -243,6 +255,9 @@ module Maven
243
255
  plugin( :clean, VERSIONS[ :clean_plugin ],
244
256
  :filesets => [ { :directory => output,
245
257
  :includes => [ "#{jar}.jar" ] } ] )
258
+ true
259
+ else
260
+ false
246
261
  end
247
262
  end
248
263
  private :setup_gem_support
@@ -362,22 +377,26 @@ module Maven
362
377
  authors.zip( emails ).each do |d|
363
378
  developer( :name => d[0], :email => d[1] )
364
379
  end
365
- unless options[ :only_metadata ]
366
- packaging 'gem'
380
+ end
381
+
382
+ has_jars = setup_gem_support( options, spec )
383
+
384
+ if @context == :project and not options[ :only_metadata ]
385
+ packaging 'gem'
386
+ if has_jars
387
+ extension 'de.saumya.mojo:gem-with-jar-extension:${jruby.plugins.version}'
388
+ else
367
389
  extension 'de.saumya.mojo:gem-extension:${jruby.plugins.version}'
368
390
  end
369
391
  end
370
392
 
371
- setup_gem_support( options, spec )
372
-
373
393
  return if options[ :only_metadata ]
374
394
 
375
395
  config = { :gemspec => name.sub( /^#{basedir}\/?/, '' ) }
376
396
  if options[ :include_jars ] || options[ 'include_jars' ]
377
397
  config[ :includeDependencies ] = true
378
398
  end
379
- plugin( 'de.saumya.mojo:gem-maven-plugin:${jruby.plugins.version}',
380
- config )
399
+ jruby_plugin!( :gem, config )
381
400
 
382
401
  deps = nil
383
402
  if @inside_gemfile.is_a? Symbol
@@ -54,8 +54,8 @@ module Maven
54
54
  end
55
55
 
56
56
  def recurse(result, dep)
57
- result[dep] = self[dep].version if self[dep] && !result.key?(dep)
58
57
  if d = self[dep]
58
+ result[dep] = d.version if !result.key?(dep)
59
59
  d.dependencies.each do |name, version|
60
60
  unless result.key? name
61
61
  if name != 'bundler'
@@ -20,6 +20,6 @@
20
20
  #
21
21
  module Maven
22
22
  module Tools
23
- VERSION = '1.0.0.rc4'.freeze
23
+ VERSION = '1.0.0.rc5'.freeze
24
24
  end
25
25
  end
@@ -24,7 +24,7 @@ module Maven
24
24
  VERSIONS = {
25
25
  :jar_plugin => "2.4",
26
26
  :clean_plugin => "2.4",
27
- :jruby_plugins => "1.0.1",
27
+ :jruby_plugins => "1.0.2",
28
28
  :bundler_version => "1.6.2",
29
29
  :jruby_version => "1.7.12",
30
30
  :tesla_version => "0.1.0"
data/spec/gemfile/pom.xml CHANGED
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  <version_from_model>1.5.0</version_from_model>
35
35
  </properties>
36
36
  <repositories>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -58,7 +58,7 @@
58
58
  <extensions>
59
59
  <extension>
60
60
  <groupId>de.saumya.mojo</groupId>
61
- <artifactId>gem-extension</artifactId>
61
+ <artifactId>gem-with-jar-extension</artifactId>
62
62
  <version>${jruby.plugins.version}</version>
63
63
  </extension>
64
64
  </extensions>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -58,7 +58,7 @@
58
58
  <extensions>
59
59
  <extension>
60
60
  <groupId>de.saumya.mojo</groupId>
61
- <artifactId>gem-extension</artifactId>
61
+ <artifactId>gem-with-jar-extension</artifactId>
62
62
  <version>${jruby.plugins.version}</version>
63
63
  </extension>
64
64
  </extensions>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  <tesla.dump.pom>pom.xml</tesla.dump.pom>
35
35
  <tesla.dump.readonly>true</tesla.dump.readonly>
36
36
  </properties>
@@ -17,7 +17,7 @@
17
17
  <name>gemfile_with_groups</name>
18
18
  <properties>
19
19
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
20
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
20
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
21
21
  </properties>
22
22
  <dependencies>
23
23
  <dependency>
@@ -41,4 +41,20 @@
41
41
  <url>http://rubygems-proxy.torquebox.org/releases</url>
42
42
  </repository>
43
43
  </repositories>
44
+ <build>
45
+ <plugins>
46
+ <plugin>
47
+ <groupId>de.saumya.mojo</groupId>
48
+ <artifactId>gem-maven-plugin</artifactId>
49
+ <version>${jruby.plugins.version}</version>
50
+ <executions>
51
+ <execution>
52
+ <goals>
53
+ <goal>initialize</goal>
54
+ </goals>
55
+ </execution>
56
+ </executions>
57
+ </plugin>
58
+ </plugins>
59
+ </build>
44
60
  </project>
@@ -17,7 +17,7 @@
17
17
  <name>gemfile_with_groups_and_lockfile</name>
18
18
  <properties>
19
19
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
20
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
20
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
21
21
  </properties>
22
22
  <repositories>
23
23
  <repository>
@@ -25,6 +25,22 @@
25
25
  <url>http://rubygems-proxy.torquebox.org/releases</url>
26
26
  </repository>
27
27
  </repositories>
28
+ <build>
29
+ <plugins>
30
+ <plugin>
31
+ <groupId>de.saumya.mojo</groupId>
32
+ <artifactId>gem-maven-plugin</artifactId>
33
+ <version>${jruby.plugins.version}</version>
34
+ <executions>
35
+ <execution>
36
+ <goals>
37
+ <goal>initialize</goal>
38
+ </goals>
39
+ </execution>
40
+ </executions>
41
+ </plugin>
42
+ </plugins>
43
+ </build>
28
44
  <profiles>
29
45
  <profile>
30
46
  <id>gemfile</id>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -17,7 +17,7 @@
17
17
  <name>gemfile_with_path</name>
18
18
  <properties>
19
19
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
20
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
20
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
21
21
  </properties>
22
22
  <dependencies>
23
23
  <dependency>
@@ -47,6 +47,11 @@
47
47
  <artifactId>gem-maven-plugin</artifactId>
48
48
  <version>${jruby.plugins.version}</version>
49
49
  <executions>
50
+ <execution>
51
+ <goals>
52
+ <goal>initialize</goal>
53
+ </goals>
54
+ </execution>
50
55
  <execution>
51
56
  <goals>
52
57
  <goal>exec</goal>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -54,7 +54,7 @@
54
54
  <extensions>
55
55
  <extension>
56
56
  <groupId>de.saumya.mojo</groupId>
57
- <artifactId>gem-extension</artifactId>
57
+ <artifactId>gem-with-jar-extension</artifactId>
58
58
  <version>${jruby.plugins.version}</version>
59
59
  </extension>
60
60
  </extensions>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -57,7 +57,7 @@
57
57
  <extensions>
58
58
  <extension>
59
59
  <groupId>de.saumya.mojo</groupId>
60
- <artifactId>gem-extension</artifactId>
60
+ <artifactId>gem-with-jar-extension</artifactId>
61
61
  <version>${jruby.plugins.version}</version>
62
62
  </extension>
63
63
  </extensions>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.1</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.2</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -0,0 +1,27 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ source 'https://rubygems.org'
4
+ ruby '1.9.3', engine: 'jruby', engine_version: '1.7.12'
5
+
6
+ gem 'rack', '~> 1.5.2'
7
+ gem 'activerecord', '~> 4.1.1'
8
+ gem 'activerecord-jdbcmysql-adapter', '~> 1.3.7'
9
+ gem 'newrelic_rpm'
10
+ gem 'aws-sdk', '~> 1.40.2'
11
+ gem 'grape', '~> 0.7.0'
12
+
13
+ group :test do
14
+ gem 'codeclimate-test-reporter', require: false
15
+ gem 'rspec-mocks', '~> 2.14.1'
16
+ gem 'rspec', '~> 2.14.1'
17
+ gem 'simplecov', '~> 0.8.2', require: false
18
+ gem 'thor', '~> 0.18.1', require: false
19
+ gem 'vcr', '~> 2.8.0'
20
+ gem 'webmock', '~> 1.16.0'
21
+ gem 'fake_sqs', '~> 0.1.0'
22
+ gem 'rack-test', '~> 0.6.2'
23
+ gem 'database_cleaner', '~> 1.2.0'
24
+ gem 'shoulda-matchers', '~> 2.6.1'
25
+ end
26
+
27
+ # vim: syntax=Ruby
@@ -0,0 +1,133 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ activemodel (4.1.1)
5
+ activesupport (= 4.1.1)
6
+ builder (~> 3.1)
7
+ activerecord (4.1.1)
8
+ activemodel (= 4.1.1)
9
+ activesupport (= 4.1.1)
10
+ arel (~> 5.0.0)
11
+ activerecord-jdbc-adapter (1.3.7)
12
+ activerecord (>= 2.2)
13
+ activerecord-jdbcmysql-adapter (1.3.7)
14
+ activerecord-jdbc-adapter (~> 1.3.7)
15
+ jdbc-mysql (>= 5.1.22)
16
+ activesupport (4.1.1)
17
+ i18n (~> 0.6, >= 0.6.9)
18
+ json (~> 1.7, >= 1.7.7)
19
+ minitest (~> 5.1)
20
+ thread_safe (~> 0.1)
21
+ tzinfo (~> 1.1)
22
+ addressable (2.3.6)
23
+ arel (5.0.1.20140414130214)
24
+ aws-sdk (1.40.3)
25
+ json (~> 1.4)
26
+ nokogiri (>= 1.4.4)
27
+ axiom-types (0.1.1)
28
+ descendants_tracker (~> 0.0.4)
29
+ ice_nine (~> 0.11.0)
30
+ thread_safe (~> 0.3, >= 0.3.1)
31
+ builder (3.2.2)
32
+ codeclimate-test-reporter (0.3.0)
33
+ simplecov (>= 0.7.1, < 1.0.0)
34
+ coercible (1.0.0)
35
+ descendants_tracker (~> 0.0.1)
36
+ crack (0.4.2)
37
+ safe_yaml (~> 1.0.0)
38
+ database_cleaner (1.2.0)
39
+ descendants_tracker (0.0.4)
40
+ thread_safe (~> 0.3, >= 0.3.1)
41
+ diff-lcs (1.2.5)
42
+ docile (1.1.3)
43
+ equalizer (0.0.9)
44
+ fake_sqs (0.1.0)
45
+ builder
46
+ sinatra
47
+ grape (0.7.0)
48
+ activesupport
49
+ builder
50
+ hashie (>= 1.2.0)
51
+ multi_json (>= 1.3.2)
52
+ multi_xml (>= 0.5.2)
53
+ rack (>= 1.3.0)
54
+ rack-accept
55
+ rack-mount
56
+ virtus (>= 1.0.0)
57
+ hashie (2.1.1)
58
+ i18n (0.6.9)
59
+ ice_nine (0.11.0)
60
+ jdbc-mysql (5.1.30)
61
+ json (1.8.1-java)
62
+ mini_portile (0.5.3)
63
+ minitest (5.3.3)
64
+ multi_json (1.10.0)
65
+ multi_xml (0.5.5)
66
+ newrelic_rpm (3.8.1.221)
67
+ nokogiri (1.6.1-java)
68
+ mini_portile (~> 0.5.0)
69
+ rack (1.5.2)
70
+ rack-accept (0.4.5)
71
+ rack (>= 0.4)
72
+ rack-mount (0.8.3)
73
+ rack (>= 1.0.0)
74
+ rack-protection (1.5.3)
75
+ rack
76
+ rack-test (0.6.2)
77
+ rack (>= 1.0)
78
+ rspec (2.14.1)
79
+ rspec-core (~> 2.14.0)
80
+ rspec-expectations (~> 2.14.0)
81
+ rspec-mocks (~> 2.14.0)
82
+ rspec-core (2.14.8)
83
+ rspec-expectations (2.14.5)
84
+ diff-lcs (>= 1.1.3, < 2.0)
85
+ rspec-mocks (2.14.6)
86
+ safe_yaml (1.0.3)
87
+ shoulda-matchers (2.6.1)
88
+ activesupport (>= 3.0.0)
89
+ simplecov (0.8.2)
90
+ docile (~> 1.1.0)
91
+ multi_json
92
+ simplecov-html (~> 0.8.0)
93
+ simplecov-html (0.8.0)
94
+ sinatra (1.4.5)
95
+ rack (~> 1.4)
96
+ rack-protection (~> 1.4)
97
+ tilt (~> 1.3, >= 1.3.4)
98
+ thor (0.18.1)
99
+ thread_safe (0.3.3-java)
100
+ tilt (1.4.1)
101
+ tzinfo (1.1.0)
102
+ thread_safe (~> 0.1)
103
+ vcr (2.8.0)
104
+ virtus (1.0.2)
105
+ axiom-types (~> 0.1)
106
+ coercible (~> 1.0)
107
+ descendants_tracker (~> 0.0.3)
108
+ equalizer (~> 0.0.9)
109
+ webmock (1.16.1)
110
+ addressable (>= 2.2.7)
111
+ crack (>= 0.3.2)
112
+
113
+ PLATFORMS
114
+ java
115
+
116
+ DEPENDENCIES
117
+ activerecord (~> 4.1.1)
118
+ activerecord-jdbcmysql-adapter (~> 1.3.7)
119
+ aws-sdk (~> 1.40.2)
120
+ codeclimate-test-reporter
121
+ database_cleaner (~> 1.2.0)
122
+ fake_sqs (~> 0.1.0)
123
+ grape (~> 0.7.0)
124
+ newrelic_rpm
125
+ rack (~> 1.5.2)
126
+ rack-test (~> 0.6.2)
127
+ rspec (~> 2.14.1)
128
+ rspec-mocks (~> 2.14.1)
129
+ shoulda-matchers (~> 2.6.1)
130
+ simplecov (~> 0.8.2)
131
+ thor (~> 0.18.1)
132
+ vcr (~> 2.8.0)
133
+ webmock (~> 1.16.0)