summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2015-01-27 01:24:11 -0800
committerRyan Davis <ryand@zenspider.com>2015-01-27 01:24:11 -0800
commit3c6bdcdbe46426545334762d0b1cd0c6ecb6ecf1 (patch)
treeb71cae0a123ece9a3c4c937a70e2ffc3858c3a1b /Rakefile
parentf01396e8c70c70933b1b24d4e387a40a3daed6b0 (diff)
downloadhoe-3c6bdcdbe46426545334762d0b1cd0c6ecb6ecf1.tar.gz
converted everything to double quoted strings
[git-p4: depot-paths = "//src/hoe/dev/": change = 9954]
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index b911bfb..4f75570 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,7 +1,7 @@
# -*- ruby -*-
-$:.unshift 'lib'
-require './lib/hoe.rb'
+$:.unshift "lib"
+require "./lib/hoe.rb"
Hoe.plugin :seattlerb
Hoe.plugin :isolate
@@ -17,14 +17,14 @@ Hoe.spec "hoe" do
license "MIT"
pluggable!
- require_rubygems_version '>= 1.4'
+ require_rubygems_version ">= 1.4"
dependency "rake", [">= 0.8", "< 11.0"] # FIX: to force it to exist pre-isolate
end
task :plugins do
puts `find lib/hoe -name \*.rb | xargs grep -h module.Hoe::`.
- gsub(/module/, '*')
+ gsub(/module/, "*")
end
task :known_plugins do