hoe 3.22.1 → 3.22.2

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
  SHA256:
3
- metadata.gz: 69eb52f789ca0e73f0f01309c3dd352806e63a713773aea6d09955c984295f02
4
- data.tar.gz: '0487307e9e24a090ecc203fcb9e5b007e372c5f8e14c8a0b23d82eb5bef1514a'
3
+ metadata.gz: 4967a1340b8eb2b55d288bee2557b2e578f2499db26fff69b94039024f58238b
4
+ data.tar.gz: e29e19572612d9faf06e1a4d05dfa23f0f22e5b8074756a3517a6231dce57eca
5
5
  SHA512:
6
- metadata.gz: 836aaf372c6ae54f1dea26be3e73c94dae7a808d0badc021f16f48372b54f3ee4f87509ee0bcb8cfeb239c533a47ccee0b164d1473a7d20eea381d0c5c46ed6f
7
- data.tar.gz: 47723d9e00789e9788b199e0dcfa30d7bcde008cd667dabb3ebe2d4a26ae2160f9a5d7517024bd5d8636b643ad70a92582353ff6dc0761d42a83c8a18b415a1b
6
+ metadata.gz: f478484bc6186cbebdfd4c739041254a66a235f5f6b49a1c4d6dc5ea82674a7587838ffe0c46400a38965134897e06e68245c4210619e203fcb4923897a3a6cc
7
+ data.tar.gz: bfa4732c2086479edaca5761f85924df6e3b377c9edaa37350273149a126f92151bef5508a46197489629f11ae2b058683a8a18e88cac88470db634ffc54eafe
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,9 @@
1
+ === 3.22.2 / 2020-08-31
2
+
3
+ * 1 bug fix:
4
+
5
+ * Bumped ruby version to include 3.0 (trunk).
6
+
1
7
  === 3.22.1 / 2020-02-12
2
8
 
3
9
  * 1 bug fix:
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ Hoe.spec "hoe" do
18
18
 
19
19
  pluggable!
20
20
  require_rubygems_version ">= 1.4"
21
- require_ruby_version "~> 2.1"
21
+ require_ruby_version [">= 2.1", "< 3.1"]
22
22
 
23
23
  dependency "rake", [">= 0.8", "< 15.0"] # FIX: to force it to exist pre-isolate
24
24
  end
data/lib/hoe.rb CHANGED
@@ -87,7 +87,7 @@ class Hoe
87
87
  include Rake::DSL if defined?(Rake::DSL)
88
88
 
89
89
  # duh
90
- VERSION = "3.22.1"
90
+ VERSION = "3.22.2"
91
91
 
92
92
  @@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
93
93
  :publish, :gemcutter, :signing, :test]
@@ -475,7 +475,7 @@ class Hoe
475
475
 
476
476
  case name
477
477
  when "hoe" then
478
- dependency "rake", [">= 0.8", "< 13.0"]
478
+ # do nothing? these deps are already in the hoe spec in the Rakefile
479
479
  else
480
480
  version = VERSION.split(/\./).first(2).join(".")
481
481
  dependency "hoe", "~> #{version}", :development
@@ -145,7 +145,7 @@ module Hoe::Publish
145
145
 
146
146
  desc "Generate email announcement file."
147
147
  task :debug_email do
148
- puts generate_email
148
+ puts generate_email ENV["FULL"]
149
149
  end
150
150
 
151
151
  desc 'Post announcement to blog. Uses the "blogs" array in your hoerc.'
@@ -14,6 +14,10 @@ class TestHoePublish < Minitest::Test
14
14
 
15
15
  make_my_diffs_pretty!
16
16
 
17
+ def linux? platform = RUBY_PLATFORM # TODO: push up to minitest?
18
+ /linux/ =~ platform
19
+ end
20
+
17
21
  def test_make_rdoc_cmd
18
22
  expected = %W[
19
23
  #{Gem.ruby}
@@ -25,6 +29,7 @@ class TestHoePublish < Minitest::Test
25
29
  History.rdoc Manifest.txt README.rdoc
26
30
  ]
27
31
 
32
+ skip if linux?
28
33
  assert_equal expected, @hoe.make_rdoc_cmd
29
34
  end
30
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.22.1
4
+ version: 3.22.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -29,7 +29,7 @@ cert_chain:
29
29
  m5x9IDiApM+vCELNwDXXGNFEnQBBK+wAe4Pek8o1V1TTOxL1kGPewVOitX1p3xoN
30
30
  h7iEjga8iM1LbZUfiISZ+WrB
31
31
  -----END CERTIFICATE-----
32
- date: 2020-02-13 00:00:00.000000000 Z
32
+ date: 2020-08-31 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: rake
@@ -150,16 +150,19 @@ require_paths:
150
150
  - lib
151
151
  required_ruby_version: !ruby/object:Gem::Requirement
152
152
  requirements:
153
- - - "~>"
153
+ - - ">="
154
154
  - !ruby/object:Gem::Version
155
155
  version: '2.1'
156
+ - - "<"
157
+ - !ruby/object:Gem::Version
158
+ version: '3.1'
156
159
  required_rubygems_version: !ruby/object:Gem::Requirement
157
160
  requirements:
158
161
  - - ">="
159
162
  - !ruby/object:Gem::Version
160
163
  version: '1.4'
161
164
  requirements: []
162
- rubygems_version: 3.0.3
165
+ rubygems_version: 3.1.2
163
166
  signing_key:
164
167
  specification_version: 4
165
168
  summary: Hoe is a rake/rubygems helper for project Rakefiles
metadata.gz.sig CHANGED
Binary file