hoe 3.14.2 → 3.15.0
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.rdoc +11 -0
- data/Rakefile +1 -1
- data/lib/hoe.rb +43 -1
- data/lib/hoe/publish.rb +5 -0
- metadata +12 -12
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5250f1297b94afc9c10c29e6d891829a40378b5
|
4
|
+
data.tar.gz: 0be94cab1f18360d4196060ec1307c2d573495fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 244a5054df61202d92ff2e14d964ad63ba1330af54173016fcdb629af5f2d91b776328c9cd04ce9e5949c8b8d7f7de1537cba73840b818d605f4b772524e94a9
|
7
|
+
data.tar.gz: 099d8043c2df6e125c03aa5bd456ff04d330b824e2a03628e63128de95c31ab2d6568332b7efe302cdad2c533b5a2728e65220cbb25654067797cc18a7d26f89
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.rdoc
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
=== 3.15.0 / 2016-03-25
|
2
|
+
|
3
|
+
* 1 minor enhancement:
|
4
|
+
|
5
|
+
* Added ruby version declarations for hoe-spec. ruby20!
|
6
|
+
|
7
|
+
* 2 bug fixes:
|
8
|
+
|
9
|
+
* Fixed running rdoc if it was satisfied outside of GEM_HOME.
|
10
|
+
* Relaxed requirement on rake to include new rake 11.x. (hsbt)
|
11
|
+
|
1
12
|
=== 3.14.2 / 2015-09-14
|
2
13
|
|
3
14
|
* 1 minor enhancement:
|
data/Rakefile
CHANGED
@@ -21,7 +21,7 @@ Hoe.spec "hoe" do
|
|
21
21
|
pluggable!
|
22
22
|
require_rubygems_version ">= 1.4"
|
23
23
|
|
24
|
-
dependency "rake", [">= 0.8", "<
|
24
|
+
dependency "rake", [">= 0.8", "< 12.0"] # FIX: to force it to exist pre-isolate
|
25
25
|
end
|
26
26
|
|
27
27
|
task :plugins do
|
data/lib/hoe.rb
CHANGED
@@ -91,7 +91,7 @@ class Hoe
|
|
91
91
|
include Rake::DSL if defined?(Rake::DSL)
|
92
92
|
|
93
93
|
# duh
|
94
|
-
VERSION = "3.
|
94
|
+
VERSION = "3.15.0"
|
95
95
|
|
96
96
|
@@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
|
97
97
|
:publish, :gemcutter, :signing, :test]
|
@@ -832,6 +832,48 @@ class Hoe
|
|
832
832
|
spec_extras[:required_ruby_version] = versions
|
833
833
|
end
|
834
834
|
|
835
|
+
##
|
836
|
+
# Declare that this gem requires ruby to be in the 1.8+ family.
|
837
|
+
|
838
|
+
def ruby18!
|
839
|
+
require_ruby_version "~> 1.8"
|
840
|
+
end
|
841
|
+
|
842
|
+
##
|
843
|
+
# Declare that this gem requires ruby to be in the 1.9 family.
|
844
|
+
|
845
|
+
def ruby19!
|
846
|
+
require_ruby_version "~> 1.9"
|
847
|
+
end
|
848
|
+
|
849
|
+
##
|
850
|
+
# Declare that this gem requires ruby to be in the 2.0+ family.
|
851
|
+
|
852
|
+
def ruby20!
|
853
|
+
require_ruby_version "~> 2.0"
|
854
|
+
end
|
855
|
+
|
856
|
+
##
|
857
|
+
# Declare that this gem requires ruby to be in the 2.1+ family.
|
858
|
+
|
859
|
+
def ruby21!
|
860
|
+
require_ruby_version "~> 2.1"
|
861
|
+
end
|
862
|
+
|
863
|
+
##
|
864
|
+
# Declare that this gem requires ruby to be in the 2.2+ family.
|
865
|
+
|
866
|
+
def ruby22!
|
867
|
+
require_ruby_version "~> 2.2"
|
868
|
+
end
|
869
|
+
|
870
|
+
##
|
871
|
+
# Declare that this gem requires ruby to be in the 2.3+ family.
|
872
|
+
|
873
|
+
def ruby23!
|
874
|
+
require_ruby_version "~> 2.3"
|
875
|
+
end
|
876
|
+
|
835
877
|
##
|
836
878
|
# Provide a linear degrading value from n to m over start to finis
|
837
879
|
# dates. If not provided, start and finis will default to 1/1 and
|
data/lib/hoe/publish.rb
CHANGED
@@ -206,6 +206,11 @@ module Hoe::Publish
|
|
206
206
|
title = "#{group_name}'s #{title}" if group_name != name
|
207
207
|
rdoc = Gem.bin_wrapper "rdoc"
|
208
208
|
|
209
|
+
unless File.exist? rdoc then
|
210
|
+
warn "Can't find #{rdoc}. Falling back."
|
211
|
+
rdoc = "rdoc"
|
212
|
+
end
|
213
|
+
|
209
214
|
%W[#{rdoc}
|
210
215
|
--title #{title}
|
211
216
|
-o #{local_rdoc_dir}
|
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.
|
4
|
+
version: 3.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Davis
|
@@ -10,9 +10,9 @@ bindir: bin
|
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
13
|
+
MIIDPjCCAiagAwIBAgIBAzANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
|
14
14
|
ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
|
15
|
-
|
15
|
+
GRYDY29tMB4XDTE1MDkxOTIwNTEyMloXDTE2MDkxODIwNTEyMlowRTETMBEGA1UE
|
16
16
|
AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
|
17
17
|
JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
|
18
18
|
b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
|
@@ -22,14 +22,14 @@ cert_chain:
|
|
22
22
|
qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
|
23
23
|
gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
|
24
24
|
HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
25
|
+
AQB+Hx8xUgrpZa4P8H8gR8zme5kISwQrG80MbpqJV6/G3/ZicRFhN5sjwu0uHGue
|
26
|
+
bd9Cymf6oIRwHVarJux2M32T6bL07Hmi07w2QaPc3MnMKB/D46SRZ2JSSGPFRBTc
|
27
|
+
SilobMRoGs/7B15uGFUEnNrCB/ltMqhwwSx1r++UQPfeySHEV9uqu03E5Vb7J37O
|
28
|
+
2Er6PLXHRiYsIycD1LkMi6YnixdITRHmrqJYE2rsjaIfpIehiusVAPHkNf7qbpHq
|
29
|
+
qx3h45R1CAsObX0SQDIT+rRbQrtKz1GHIZTOFYvEJjUY1XmRTZupD3CJ8Q7sDqSy
|
30
|
+
NLq5jm1fq6Y9Uolu3RJbmycf
|
31
31
|
-----END CERTIFICATE-----
|
32
|
-
date:
|
32
|
+
date: 2016-03-25 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: rake
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
version: '0.8'
|
41
41
|
- - <
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: '
|
43
|
+
version: '12.0'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
46
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
version: '0.8'
|
51
51
|
- - <
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
53
|
+
version: '12.0'
|
54
54
|
- !ruby/object:Gem::Dependency
|
55
55
|
name: minitest
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
metadata.gz.sig
CHANGED
Binary file
|