lib/hoe.rb in hoe-3.22.3 vs lib/hoe.rb in hoe-3.23.0
- old
+ new
@@ -85,11 +85,11 @@
class Hoe
include Rake::DSL if defined?(Rake::DSL)
# duh
- VERSION = "3.22.3"
+ VERSION = "3.23.0"
@@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
:publish, :gemcutter, :signing, :test]
@bad_plugins = []
@@ -839,24 +839,10 @@
def require_ruby_version *versions
spec_extras[:required_ruby_version] = versions
end
##
- # Declare that this gem requires ruby to be in the 1.8+ family.
-
- def ruby18!
- require_ruby_version "~> 1.8"
- end
-
- ##
- # Declare that this gem requires ruby to be in the 1.9 family.
-
- def ruby19!
- require_ruby_version "~> 1.9"
- end
-
- ##
# Declare that this gem requires ruby to be in the 2.0+ family.
def ruby20!
require_ruby_version "~> 2.0"
end
@@ -879,9 +865,12 @@
# Declare that this gem requires ruby to be in the 2.3+ family.
def ruby23!
require_ruby_version "~> 2.3"
end
+
+ # I don't care for these methods (eg 3.0 is out) ... so I'm not
+ # continuing them.
##
# Provide a linear degrading value from n to m over start to finis
# dates. If not provided, start and finis will default to 1/1 and
# 12/31 of the current year.