summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--Gemfile7
-rw-r--r--Rakefile19
3 files changed, 17 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml
index 201aa3ca..d3d1e215 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,7 @@ rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- - rbx-19mode
+ - rbx
- jruby-19mode
- ruby-head
- jruby-head
diff --git a/Gemfile b/Gemfile
index a68ee61c..b3b89451 100644
--- a/Gemfile
+++ b/Gemfile
@@ -9,3 +9,10 @@ end
group :profile do
gem 'ruby-prof'
end
+
+platforms :rbx do
+ gem 'rubysl'
+ gem 'rubysl-test-unit'
+ gem 'racc'
+ gem 'rubinius-coverage', '~> 2.0'
+end
diff --git a/Rakefile b/Rakefile
index 0e29e787..9f1dd36e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -10,18 +10,17 @@ end
task :gendoc do
#puts 'yard doc generation disabled until JRuby build native extensions for redcarpet or yard removes the dependency.'
- system "yardoc"
- system "yard stats --list-undoc"
+ system "yardoc"
+ system "yard stats --list-undoc"
end
-task :test do
- require 'rake/testtask'
- Rake::TestTask.new do |t|
- t.libs << 'test'
- t.test_files = FileList['test/**/tc_*.rb']
- t.verbose = false
- t.warning = true
- end
+
+require 'rake/testtask'
+Rake::TestTask.new do |t|
+ t.libs << 'test'
+ t.test_files = FileList['test/**/tc_*.rb']
+ t.verbose = false
+ t.warning = true
end
task :release => :build do