1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Add rubinius-specific dependencies to get specs running

This commit is contained in:
Peter M. Goldstein 2013-12-05 08:32:17 -08:00
parent 4c15aca64f
commit 40a556fee6
2 changed files with 9 additions and 2 deletions

View file

@ -4,7 +4,7 @@ services:
rvm:
- 1.9.3
- jruby-19mode
- rbx-2.1.1
- rbx
- 2.0.0
branches:
only:
@ -17,4 +17,4 @@ notifications:
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-2.1.1
- rvm: rbx

View file

@ -1,2 +1,9 @@
source 'https://rubygems.org'
gemspec
platforms :rbx do
gem 'rubysl', '~> 2.0' # if using anything in the ruby standard library
gem 'psych' # if using yaml
gem 'minitest' # if using minitest
gem 'rubinius-developer_tools' # if using any of coverage, debugger, profiler
end