diff options
| author | Jurriaan Pruis <[email protected]> | 2014-01-02 17:22:36 +0100 |
|---|---|---|
| committer | Jurriaan Pruis <[email protected]> | 2014-01-02 18:32:09 +0100 |
| commit | 64a818623792fd9c6397d1f4fc124c49904e5614 (patch) | |
| tree | e4159cfb75162bd91892fc206281e17d46af9f6e | |
| parent | 2f09f7530acfb47ebc772a609b2cf9d523ac60b7 (diff) | |
| download | caxlsx-64a818623792fd9c6397d1f4fc124c49904e5614.tar.gz caxlsx-64a818623792fd9c6397d1f4fc124c49904e5614.zip | |
Travis rbx fixes
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | Gemfile | 7 | ||||
| -rw-r--r-- | Rakefile | 19 |
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 @@ -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 @@ -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 |
