Skip to content

Commit

Permalink
+ Updated Rakefile for new hoe
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//src/ParseTree/dev/": change = 5074]
  • Loading branch information
zenspider committed Jun 18, 2009
1 parent 182029e commit b2ea807
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Rakefile
Expand Up @@ -8,22 +8,22 @@ Hoe.add_include_dirs("../../RubyInline/dev/lib",
"../../ZenTest/dev/lib",
"lib")

require './lib/parse_tree.rb'
Hoe.plugin :seattlerb

Hoe.new("ParseTree", ParseTree::VERSION) do |pt|
pt.rubyforge_name = "parsetree"
Hoe.spec "ParseTree" do
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'

pt.developer('Ryan Davis', 'ryand-ruby@zenspider.com')
clean_globs << File.expand_path("~/.ruby_inline")
extra_deps << ['RubyInline', '>= 3.7.0']
extra_deps << ['sexp_processor', '>= 3.0.0']

pt.clean_globs << File.expand_path("~/.ruby_inline")
pt.extra_deps << ['RubyInline', '>= 3.7.0']
pt.extra_deps << ['sexp_processor', '>= 3.0.0']
pt.spec_extras[:require_paths] = proc { |paths| paths << 'test' }
spec_extras[:require_paths] = proc { |paths| paths << 'test' }

pt.multiruby_skip << "1.9.1"
pt.multiruby_skip << "mri_rel_1_9" << "rubinius" << "mri_trunk"
multiruby_skip << "1.9.1" << "mri_rel_1_9" << "rubinius" << "mri_trunk"
end

task :test => :clean

desc 'Run in gdb'
task :debug do
puts "RUN: r -d #{Hoe::RUBY_FLAGS} test/test_all.rb #{Hoe::FILTER}"
Expand Down

0 comments on commit b2ea807

Please sign in to comment.