summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-03-30 13:39:07 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-03-30 13:39:07 -0700
commit1a5609f1c19238565ddf520b7439bfc0948cf539 (patch)
tree59c82a8a1a1aa504a5c634f65daeeecabc53651b /Rakefile
parent8dfd1b10016855187ade94f36d592b0319e2b226 (diff)
downloadpsych-1a5609f1c19238565ddf520b7439bfc0948cf539.tar.gz
synching with ruby trunkv1.1.0
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 946cabb..457327d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,7 +15,6 @@ Hoe.plugin :debugging, :doofus, :git
Hoe.spec 'psych' do
developer 'Aaron Patterson', 'aaronp@rubyforge.org'
- developer 'John Barnette', 'jbarnette@rubyforge.org'
self.extra_rdoc_files = Dir['*.rdoc']
self.history_file = 'CHANGELOG.rdoc'
@@ -24,10 +23,13 @@ Hoe.spec 'psych' do
extra_dev_deps << ['rake-compiler', '>= 0.4.1']
- self.spec_extras = { :extensions => ["ext/psych/extconf.rb"] }
+ self.spec_extras = {
+ :extensions => ["ext/psych/extconf.rb"],
+ :required_ruby_version => '>= 1.9.2'
+ }
Rake::ExtensionTask.new "psych", spec do |ext|
- ext.lib_dir = File.join(*['lib', 'psych', ENV['FAT_DIR']].compact)
+ ext.lib_dir = File.join(*['lib', ENV['FAT_DIR']].compact)
end
end