hoe-travis 1.2 → 1.3

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ed137b722443bd3c8b46285e0df60776d23e8010
4
+ data.tar.gz: 279d0aa32a799ed525f1e6ca04cbc5449806881c
5
+ SHA512:
6
+ metadata.gz: 7ba31e04c92adfc9a61cacc475b88ccb249479602f41a42a85d51db283ec4f3088e801ca4fe7192d278d2a9b1e2a29bfba87749f468bc9d78cf2d95f89898fc5
7
+ data.tar.gz: e2fb94927cea0096808c706ef738e2d43d5f34f89cae3503c72cdc37baa90376d1e4e083599bbe44239a9be85b00d538491826523798b444400f114430bdb3cc
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -0,0 +1,15 @@
1
+ ---
2
+ after_script:
3
+ - rake travis:after -t
4
+ before_script:
5
+ - gem install hoe-travis --no-rdoc --no-ri
6
+ - rake travis:before -t
7
+ language: ruby
8
+ notifications:
9
+ email:
10
+ - drbrain@segment7.net
11
+ rvm:
12
+ - 2.1.0 # minimum supported
13
+ - 2.2.0
14
+ - 2.3.0
15
+ script: rake travis
@@ -1,3 +1,11 @@
1
+ === 1.3 / 2016-04-08
2
+
3
+ Minor enhancement:
4
+
5
+ * check_manifest is run after tests now, so missing files cause travis
6
+ failures. Pull request #1 by Samuel Giddins.
7
+ * Updated default ruby versions to currently supported versions.
8
+
1
9
  === 1.2 / 2012-10-24
2
10
 
3
11
  * Minor enhancement
@@ -1,4 +1,5 @@
1
1
  .autotest
2
+ .travis.yml
2
3
  History.txt
3
4
  Manifest.txt
4
5
  README.rdoc
@@ -54,7 +54,7 @@ If you would like to make future changes to your .travis.yml you can run:
54
54
 
55
55
  Which, like <code>travis:generate</code>, will bring up your EDITOR with your
56
56
  .travis.yml. When you've saved the file the changes will be checked by
57
- travis-lint before writing back to .travis.yml and give you a chance to
57
+ Travis's /lint API before writing back to .travis.yml and give you a chance to
58
58
  correct them.
59
59
 
60
60
  If you've edited your .travis.yml by hand you can run:
data/Rakefile CHANGED
@@ -15,7 +15,8 @@ Hoe.spec 'hoe-travis' do
15
15
 
16
16
  rdoc_locations << 'docs.seattlerb.org:/data/www/docs.seattlerb.org/hoe-travis/'
17
17
 
18
- self.extra_deps << ['travis-lint', '~> 1.2']
18
+ license 'MIT'
19
+
19
20
  # this explicit dependency is so `gem install hoe-travis` will fetch
20
21
  # hoe and rake, simplifying the before_script command list
21
22
  self.extra_deps << ['hoe', '~> 3.0']
@@ -48,16 +48,16 @@ require 'uri'
48
48
  # development dependencies.
49
49
  #
50
50
  # travis:check::
51
- # Runs travis-lint against your .travis.yml.
51
+ # Lints your .travis.yml.
52
52
  #
53
53
  # travis:edit::
54
- # Pulls up your .travis.yml in your EDITOR and runs travis-lint upon saving.
55
- # Does not allow you to save a bad .travis.yml.
54
+ # Pulls up your .travis.yml in your EDITOR and lints your configuration upon
55
+ # saving. Does not allow you to save a bad .travis.yml.
56
56
  #
57
57
  # travis:generate::
58
58
  # Generates a .travis.yml based on your Hoe spec and .hoerc then brings it
59
- # up in your EDITOR and runs travis-lint upon saving. Does not allow you to
60
- # save a bad .travis.yml.
59
+ # up in your EDITOR and lints upon saving. Does not allow you to save a bad
60
+ # .travis.yml.
61
61
  #
62
62
  # travis:enable::
63
63
  # Enables the travis hook on github.com. Requires further setup as
@@ -95,7 +95,7 @@ require 'uri'
95
95
  # versions::
96
96
  # The versions of ruby used to run your tests. Note that if you have
97
97
  # multiruby installed, your installed versions will be preferred over the
98
- # defaults of ruby 1.8.7, 1.9.2 and 1.9.3.
98
+ # defaults that come with hoe-travis.
99
99
  #
100
100
  # In your .hoerc you may provide a "notifications" key such as:
101
101
  #
@@ -111,7 +111,7 @@ module Hoe::Travis
111
111
  ##
112
112
  # This version of Hoe::Travis
113
113
 
114
- VERSION = '1.2'
114
+ VERSION = '1.3'
115
115
 
116
116
  YAML_EXCEPTIONS = if defined?(Psych) then # :nodoc:
117
117
  if Psych.const_defined? :Exception then
@@ -136,9 +136,9 @@ module Hoe::Travis
136
136
  'script' => 'rake travis',
137
137
  'token' => 'FIX - See: ri Hoe::Travis',
138
138
  'versions' => %w[
139
- 1.8.7
140
- 1.9.2
141
- 1.9.3
139
+ 2.1.0
140
+ 2.2.0
141
+ 2.3.0
142
142
  ],
143
143
  }
144
144
 
@@ -151,13 +151,12 @@ module Hoe::Travis
151
151
 
152
152
  def define_travis_tasks
153
153
  desc "Runs your tests for travis"
154
- task :travis => %w[test]
154
+ task :travis => %w[test check_manifest]
155
155
 
156
156
  namespace :travis do
157
157
  desc "Run by travis-ci after running the default checks"
158
158
  task :after => %w[
159
159
  travis:fake_config
160
- check_manifest
161
160
  ]
162
161
 
163
162
  desc "Run by travis-ci before running the default checks"
@@ -166,9 +165,9 @@ module Hoe::Travis
166
165
  check_extra_deps
167
166
  ]
168
167
 
169
- desc "Runs travis-lint on your .travis.yml"
168
+ desc "Lint your .travis.yml"
170
169
  task :check do
171
- abort unless check_travis_yml '.travis.yml'
170
+ abort unless travis_yml_check '.travis.yml'
172
171
  end
173
172
 
174
173
  desc "Disables the travis-ci hook"
@@ -471,35 +470,68 @@ Expected \"git@github.com:[repo].git\" as your remote origin
471
470
  end
472
471
 
473
472
  ##
474
- # Runs travis-lint against the travis.yml in +path+. If the file is OK true
475
- # is returned, otherwise the issues are displayed on $stderr and false is
476
- # returned.
473
+ # Submits the travis.yml in +path+ to travis-ci.org for linting. If the
474
+ # file is OK true is returned, otherwise the issues are displayed on $stderr
475
+ # and false is returned.
477
476
 
478
477
  def travis_yml_check path
479
- require 'travis/lint'
478
+ require 'net/http'
480
479
 
481
- travis_yml = YAML.load_file path
480
+ post_body = {
481
+ 'content' => File.read(path),
482
+ }
483
+
484
+ req = Net::HTTP::Post.new '/lint'
485
+ req.set_form post_body, 'multipart/form-data'
482
486
 
483
- issues = Travis::Lint::Linter.validate travis_yml
487
+ cert_store = OpenSSL::X509::Store.new
488
+ cert_store.set_default_paths
484
489
 
485
- return true if issues.empty?
490
+ http = Net::HTTP.new 'api.travis-ci.org', 443
491
+ http.use_ssl = true
492
+ http.verify_mode = OpenSSL::SSL::VERIFY_PEER
493
+ http.cert_store = cert_store
494
+
495
+ res = http.request req
486
496
 
487
- issues.each do |issue|
488
- warn "There is an issue with the key #{issue[:key].inspect}:"
489
- warn "\t#{issue[:issue]}"
497
+ unless Net::HTTPOK === res then
498
+ warn "Unable to lint #{path}: #{res.body}"
499
+
500
+ return false
490
501
  end
491
502
 
492
- false
493
- rescue *YAML_EXCEPTIONS => e
494
- warn "invalid YAML in travis.yml file at #{path}: #{e.message}"
503
+ require 'json'
504
+
505
+ response = JSON.parse res.body
506
+
507
+ lint = response.fetch 'lint'
508
+ warnings = lint.fetch 'warnings'
509
+
510
+ return true if warnings.empty?
511
+
512
+ warnings.each do |warning|
513
+ keys = warning.fetch 'key'
514
+ message = warning.fetch 'message'
515
+
516
+ if keys.empty? then
517
+ warn message
518
+ else
519
+ warn "For #{keys.join ', '}: #{message}"
520
+ end
521
+ end
522
+
523
+ return false
524
+
525
+ rescue Net::HTTPError => e
526
+ warn "Unable to lint #{path}: #{e.message}"
495
527
 
496
528
  return false
497
529
  end
498
530
 
499
531
  ##
500
532
  # Loads the travis.yml in +path+ in your EDITOR (or vi if unset). Upon
501
- # saving the travis.yml is checked with travis-lint. If any problems are
502
- # found you will be asked to retry the edit.
533
+ # saving the travis.yml is checked by linting. If any problems are found
534
+ # you will be asked to retry the edit.
503
535
  #
504
536
  # If the edited travis.yml is OK true is returned, otherwise false.
505
537
 
@@ -554,4 +586,3 @@ Expected \"git@github.com:[repo].git\" as your remote origin
554
586
  end
555
587
 
556
588
  end
557
-
@@ -12,6 +12,8 @@ class TestHoeTravis < MiniTest::Unit::TestCase
12
12
  developer 'author', 'email@example'
13
13
  developer 'silent', ''
14
14
 
15
+ license 'MIT'
16
+
15
17
  self.readme_file = 'README.rdoc'
16
18
  end
17
19
 
@@ -30,10 +32,10 @@ class TestHoeTravis < MiniTest::Unit::TestCase
30
32
  @hoe.define_travis_tasks
31
33
 
32
34
  travis = Rake::Task['travis']
33
- assert_equal %w[test], travis.prerequisites
35
+ assert_equal %w[test check_manifest], travis.prerequisites
34
36
 
35
37
  after = Rake::Task['travis:after']
36
- assert_equal %w[travis:fake_config check_manifest], after.prerequisites
38
+ assert_equal %w[travis:fake_config], after.prerequisites
37
39
 
38
40
  before = Rake::Task['travis:before']
39
41
  assert_equal %w[install_plugins check_extra_deps], before.prerequisites
@@ -132,7 +134,7 @@ class TestHoeTravis < MiniTest::Unit::TestCase
132
134
  def test_travis_versions
133
135
  def @hoe.have_gem?(name) false end
134
136
 
135
- assert_equal %w[1.8.7 1.9.2 1.9.3], @hoe.travis_versions
137
+ assert_equal %w[2.1.0 2.2.0 2.3.0], @hoe.travis_versions
136
138
  end
137
139
 
138
140
  def test_travis_versions_multiruby
@@ -154,13 +156,13 @@ class TestHoeTravis < MiniTest::Unit::TestCase
154
156
  Dir.mktmpdir do |path|
155
157
  ENV['HOME'] = path
156
158
 
157
- assert_equal %w[1.8.7 1.9.2 1.9.3], @hoe.travis_versions
159
+ assert_equal %w[2.1.0 2.2.0 2.3.0], @hoe.travis_versions
158
160
  end
159
161
  end
160
162
 
161
163
  def test_travis_yml_check
162
164
  Tempfile.open 'travis' do |io|
163
- io.write "---\nlanguage: ruby\nrvm:\n - 1.8.7\n"
165
+ io.write "---\nlanguage: ruby\nrvm:\n - 2.1.0\n"
164
166
  io.rewind
165
167
 
166
168
  assert @hoe.travis_yml_check io.path
@@ -169,7 +171,7 @@ class TestHoeTravis < MiniTest::Unit::TestCase
169
171
 
170
172
  def test_travis_yml_check_invalid
171
173
  Tempfile.open 'travis' do |io|
172
- io.write "---\nlanguage: ruby\n"
174
+ io.write "---\nlangage: ruby\n"
173
175
  io.rewind
174
176
 
175
177
  out, err = capture_io do
@@ -186,13 +188,13 @@ class TestHoeTravis < MiniTest::Unit::TestCase
186
188
  ENV['EDITOR'] = "cat > #{out_io.path} < "
187
189
 
188
190
  Tempfile.open 'travis' do |io|
189
- io.write "---\nlanguage: ruby\nrvm:\n - 1.8.7\n"
191
+ io.write "---\nlanguage: ruby\nrvm:\n - 2.1.0\n"
190
192
  io.rewind
191
193
 
192
194
  @hoe.travis_yml_edit io.path
193
195
  end
194
196
 
195
- assert_equal "---\nlanguage: ruby\nrvm:\n - 1.8.7\n", out_io.read
197
+ assert_equal "---\nlanguage: ruby\nrvm:\n - 2.1.0\n", out_io.read
196
198
  end
197
199
  end
198
200
 
@@ -232,9 +234,9 @@ notifications:
232
234
  email:
233
235
  - email@example
234
236
  rvm:
235
- - 1.8.7
236
- - 1.9.2
237
- - 1.9.3
237
+ - 2.1.0
238
+ - 2.2.0
239
+ - 2.3.0
238
240
  script: rake travis
239
241
  TRAVIS_YML
240
242
 
@@ -258,4 +260,3 @@ script: rake travis
258
260
  end
259
261
 
260
262
  end
261
-
metadata CHANGED
@@ -1,127 +1,88 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe-travis
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.2'
5
- prerelease:
4
+ version: '1.3'
6
5
  platform: ruby
7
6
  authors:
8
7
  - Eric Hodel
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain:
12
- - !binary |-
13
- LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURlRENDQW1DZ0F3SUJB
14
- Z0lCQVRBTkJna3Foa2lHOXcwQkFRVUZBREJCTVJBd0RnWURWUVFEREFka2Nt
15
- SnkKWVdsdU1SZ3dGZ1lLQ1pJbWlaUHlMR1FCR1JZSWMyVm5iV1Z1ZERjeEV6
16
- QVJCZ29Ka2lhSmsvSXNaQUVaRmdOdQpaWFF3SGhjTk1USXdNakk0TVRjMU5E
17
- STFXaGNOTVRNd01qSTNNVGMxTkRJMVdqQkJNUkF3RGdZRFZRUUREQWRrCmNt
18
- SnlZV2x1TVJnd0ZnWUtDWkltaVpQeUxHUUJHUllJYzJWbmJXVnVkRGN4RXpB
19
- UkJnb0praWFKay9Jc1pBRVoKRmdOdVpYUXdnZ0VpTUEwR0NTcUdTSWIzRFFF
20
- QkFRVUFBNElCRHdBd2dnRUtBb0lCQVFDYmJnTHJHTEdJREU3NgpMVi9jdnhk
21
- RXpDdVl1UzNvRzlQclNabnVEd2V5U1VmZHAvc28wY0RxK2o4YnF5Nk96WlN3
22
- MDdnZGp3Rk1TZDZKClU1ZGRaQ1Z5d241bm5BUStVaTdqTVc1NENZdDUvSDZm
23
- MlVTNlUwaFFPakpSNmNwZml5bWd4R2RmeVRpVmN2VG0KR2ovb2tXclFsME5q
24
- WU9ZQnBEaSs5UFBtYUgyUm1MSnUwZEIvTnlsc0RuVzVqNnlOMUJFSThNZkpS
25
- UitIUktaWQptVXRnekJ3RjFWNEtJWlE4RXVMNkkvbkhWdTA3aTZJa3JwQWd4
26
- cFhVZmRKUUppMG9aQXFYdXJBVjN5VHhrRndkCmc2MllyclcyNm1EZStwWkJ6
27
- UjZicExFK1BtWEN6ejdVeFVxM0FFMGdQSGJpTVhpZTNFRkUwb3huc1UzbElk
28
- dWgKc0NBTmlROEJBZ01CQUFHamV6QjVNQWtHQTFVZEV3UUNNQUF3Q3dZRFZS
29
- MFBCQVFEQWdTd01CMEdBMVVkRGdRVwpCQlM1azRaNzVWU3BkTTBBY2xHMlV2
30
- ekZBL1ZXNURBZkJnTlZIUkVFR0RBV2dSUmtjbUp5WVdsdVFITmxaMjFsCmJu
31
- UTNMbTVsZERBZkJnTlZIUklFR0RBV2dSUmtjbUp5WVdsdVFITmxaMjFsYm5R
32
- M0xtNWxkREFOQmdrcWhraUcKOXcwQkFRVUZBQU9DQVFFQVBlV3pGbnJjdkM2
33
- ZVZ6ZGxobWpVdWIyczZxaWVCa29uZ0tSREhRejVNRWVRdjRMUwpTQVJub0hZ
34
- K3VDQVZMLzF4R0FobXB6cVEzZkpHV0s5ZUJhY1cvZThFNUdGOXhRY1YzbUUx
35
- YkEwV05haURsWDVqClUyYUkrWkdTYmxxdkhVQ3hLQkhSMXM3VU1Ic2J6MXNh
36
- T21nZFJUeVB4MGp1SnM2OG9jYlVUZVlCTFd1OVY0S1AKemRHQUcySlhPMmdP
37
- TmczYjR0WUR2cEJMYnJ5K0tPWDI3aUFKdWxVYUg5VGlUT1VMTDRJVEpWRnNL
38
- MG1ZVnFtUgpROFRubzlTM2U0WEdHUDFaV2ZMclRXRUpiYXZGZmhHSHV0MmlN
39
- UndmQzdzL1lJTEFITkFUb3BhSmRIOUROcGQxClU4MXpHSE1VQk92ei9WR1Q2
40
- d0p3WUozZW1TMm5mQTJOT0hGZmdBPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUt
41
- LS0tLQo=
42
- date: 2012-10-25 00:00:00.000000000 Z
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDNjCCAh6gAwIBAgIBAzANBgkqhkiG9w0BAQUFADBBMRAwDgYDVQQDDAdkcmJy
14
+ YWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZFgNu
15
+ ZXQwHhcNMTUwODA1MjE1NzQ5WhcNMTYwODA0MjE1NzQ5WjBBMRAwDgYDVQQDDAdk
16
+ cmJyYWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZ
17
+ FgNuZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbbgLrGLGIDE76
18
+ LV/cvxdEzCuYuS3oG9PrSZnuDweySUfdp/so0cDq+j8bqy6OzZSw07gdjwFMSd6J
19
+ U5ddZCVywn5nnAQ+Ui7jMW54CYt5/H6f2US6U0hQOjJR6cpfiymgxGdfyTiVcvTm
20
+ Gj/okWrQl0NjYOYBpDi+9PPmaH2RmLJu0dB/NylsDnW5j6yN1BEI8MfJRR+HRKZY
21
+ mUtgzBwF1V4KIZQ8EuL6I/nHVu07i6IkrpAgxpXUfdJQJi0oZAqXurAV3yTxkFwd
22
+ g62YrrW26mDe+pZBzR6bpLE+PmXCzz7UxUq3AE0gPHbiMXie3EFE0oxnsU3lIduh
23
+ sCANiQ8BAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
24
+ BBS5k4Z75VSpdM0AclG2UvzFA/VW5DANBgkqhkiG9w0BAQUFAAOCAQEAXmQgUF6x
25
+ M/aBwZ0uaXzquQHbgAzH3bXlGIa3DrxCiSRAZ1xwYX4gRMV9iQ2kVDwafz5sg9/p
26
+ N/cMBNOjYRTX2XGv49PpaIiO/JRL/SLDdws/4tkIJOynFqpwcLNB66XeciXxh6nH
27
+ MS+S1O749pcMIFIBpMXvRS5mG7MPY3NhnmzcIQNYvXAcSXv675Cg4h1c6pxiqeAS
28
+ u3L+nuwJKNyOIWL3B5ek/yypK55RFUSwReqZTZQkVhNF4xlqPYGDsAxIE/xqadfP
29
+ +paXWY9JmO3d13yH2/nhDPAo/y7KwmEETFvtUoBmX4o44n/ELqSgb9NrL+613z9j
30
+ n8mbTOXmLGlTBA==
31
+ -----END CERTIFICATE-----
32
+ date: 2016-04-08 00:00:00.000000000 Z
43
33
  dependencies:
44
- - !ruby/object:Gem::Dependency
45
- name: travis-lint
46
- requirement: !ruby/object:Gem::Requirement
47
- none: false
48
- requirements:
49
- - - ~>
50
- - !ruby/object:Gem::Version
51
- version: '1.2'
52
- type: :runtime
53
- prerelease: false
54
- version_requirements: !ruby/object:Gem::Requirement
55
- none: false
56
- requirements:
57
- - - ~>
58
- - !ruby/object:Gem::Version
59
- version: '1.2'
60
34
  - !ruby/object:Gem::Dependency
61
35
  name: hoe
62
36
  requirement: !ruby/object:Gem::Requirement
63
- none: false
64
37
  requirements:
65
- - - ~>
38
+ - - "~>"
66
39
  - !ruby/object:Gem::Version
67
40
  version: '3.0'
68
41
  type: :runtime
69
42
  prerelease: false
70
43
  version_requirements: !ruby/object:Gem::Requirement
71
- none: false
72
44
  requirements:
73
- - - ~>
45
+ - - "~>"
74
46
  - !ruby/object:Gem::Version
75
47
  version: '3.0'
76
48
  - !ruby/object:Gem::Dependency
77
49
  name: minitest
78
50
  requirement: !ruby/object:Gem::Requirement
79
- none: false
80
51
  requirements:
81
- - - ~>
52
+ - - "~>"
82
53
  - !ruby/object:Gem::Version
83
- version: '3.4'
54
+ version: '5.8'
84
55
  type: :development
85
56
  prerelease: false
86
57
  version_requirements: !ruby/object:Gem::Requirement
87
- none: false
88
58
  requirements:
89
- - - ~>
59
+ - - "~>"
90
60
  - !ruby/object:Gem::Version
91
- version: '3.4'
61
+ version: '5.8'
92
62
  - !ruby/object:Gem::Dependency
93
63
  name: rdoc
94
64
  requirement: !ruby/object:Gem::Requirement
95
- none: false
96
65
  requirements:
97
- - - ~>
66
+ - - "~>"
98
67
  - !ruby/object:Gem::Version
99
- version: '3.10'
68
+ version: '4.0'
100
69
  type: :development
101
70
  prerelease: false
102
71
  version_requirements: !ruby/object:Gem::Requirement
103
- none: false
104
72
  requirements:
105
- - - ~>
73
+ - - "~>"
106
74
  - !ruby/object:Gem::Version
107
- version: '3.10'
108
- description: ! 'hoe-travis is a Hoe plugin that allows your gem to gain maximum benefit
109
- from
110
-
75
+ version: '4.0'
76
+ description: |-
77
+ hoe-travis is a Hoe plugin that allows your gem to gain maximum benefit from
111
78
  http://travis-ci.org. The plugin contains a <code>.travis.yml</code>
112
-
113
79
  generator and a pre-defined rake task which runs the tests and ensures your
114
-
115
80
  manifest file is correct.
116
81
 
117
-
118
82
  With hoe-travis it is easy to add additional checks. Custom checks can be
119
-
120
83
  easily verified locally by simply running a rake task instead of committing
121
-
122
84
  and pushing a change, waiting for travis to run your tests, then trying a new
123
-
124
- commit if you didn''t fix the problem.'
85
+ commit if you didn't fix the problem.
125
86
  email:
126
87
  - drbrain@segment7.net
127
88
  executables: []
@@ -131,40 +92,39 @@ extra_rdoc_files:
131
92
  - Manifest.txt
132
93
  - README.rdoc
133
94
  files:
134
- - .autotest
95
+ - ".autotest"
96
+ - ".travis.yml"
135
97
  - History.txt
136
98
  - Manifest.txt
137
99
  - README.rdoc
138
100
  - Rakefile
139
101
  - lib/hoe/travis.rb
140
102
  - test/test_hoe_travis.rb
141
- - .gemtest
142
103
  homepage: https://github.com/drbrain/hoe-travis
143
- licenses: []
104
+ licenses:
105
+ - MIT
106
+ metadata: {}
144
107
  post_install_message:
145
108
  rdoc_options:
146
- - --main
109
+ - "--main"
147
110
  - README.rdoc
148
111
  require_paths:
149
112
  - lib
150
113
  required_ruby_version: !ruby/object:Gem::Requirement
151
- none: false
152
114
  requirements:
153
- - - ! '>='
115
+ - - ">="
154
116
  - !ruby/object:Gem::Version
155
117
  version: '0'
156
118
  required_rubygems_version: !ruby/object:Gem::Requirement
157
- none: false
158
119
  requirements:
159
- - - ! '>='
120
+ - - ">="
160
121
  - !ruby/object:Gem::Version
161
122
  version: '0'
162
123
  requirements: []
163
- rubyforge_project: hoe-travis
164
- rubygems_version: 1.8.24
124
+ rubyforge_project:
125
+ rubygems_version: 2.6.3
165
126
  signing_key:
166
- specification_version: 3
127
+ specification_version: 4
167
128
  summary: hoe-travis is a Hoe plugin that allows your gem to gain maximum benefit from
168
129
  http://travis-ci.org
169
- test_files:
170
- - test/test_hoe_travis.rb
130
+ test_files: []
metadata.gz.sig CHANGED
Binary file
data/.gemtest DELETED
File without changes