Skip to content

Commit

Permalink
Isolated setup. Cleaned up Rakefile. Updated .autotest for pt_testcas…
Browse files Browse the repository at this point in the history
…e changes

[git-p4: depot-paths = "//src/ruby2ruby/dev/": change = 6411]
  • Loading branch information
zenspider committed Jun 30, 2011
1 parent f44082b commit f7c681a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .autotest
Expand Up @@ -6,9 +6,8 @@ Autotest.add_hook :initialize do |at|
at.order = :random
at.testlib = "minitest/autorun"

at.extra_files << "../../ParseTree/dev/test/pt_testcase.rb"
at.extra_files << "../../ParseTree/dev/lib/unified_ruby.rb"
at.libs << ":../../sexp_processor/dev/lib:../../ParseTree/dev/lib:../../ParseTree/dev/test"
at.extra_files << "../../ruby_parser/dev/test/pt_testcase.rb"
at.libs << ":../../sexp_processor/dev/lib:../../ruby_parser/dev/lib"

(1..4).each do |n|
at.extra_class_map["TestRuby2Ruby#{n}"] = "test/test_ruby2ruby.rb"
Expand Down
9 changes: 5 additions & 4 deletions Rakefile
Expand Up @@ -2,22 +2,23 @@

require 'rubygems'
require 'hoe'
require 'isolate/rake'

Hoe.add_include_dirs("lib",
"../../ParseTree/dev/test",
"../../ruby_parser/dev/lib",
"../../sexp_processor/dev/lib")

Hoe.plugin :seattlerb
Hoe.plugin :isolate

Hoe.spec 'ruby2ruby' do
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'

self.rubyforge_name = 'seattlerb'

extra_deps << ["sexp_processor", "~> 3.0"]
extra_deps << ["ruby_parser", "~> 2.0"]
extra_dev_deps << ["ParseTree", "~> 3.0"]
dependency "sexp_processor", "~> 3.0"
dependency "ruby_parser", "~> 2.0"
dependency "ParseTree", "~> 3.0", :developer
end

task :stress do
Expand Down

0 comments on commit f7c681a

Please sign in to comment.