mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Merge pull request #1381 from petergoldstein/feature/add_rubinius_gems
Get specs running under Rubinius
This commit is contained in:
commit
67be68b68a
2 changed files with 9 additions and 2 deletions
|
@ -4,7 +4,7 @@ services:
|
||||||
rvm:
|
rvm:
|
||||||
- 1.9.3
|
- 1.9.3
|
||||||
- jruby-19mode
|
- jruby-19mode
|
||||||
- rbx-2.1.1
|
- rbx
|
||||||
- 2.0.0
|
- 2.0.0
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
@ -17,4 +17,4 @@ notifications:
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- rvm: jruby-19mode
|
- rvm: jruby-19mode
|
||||||
- rvm: rbx-2.1.1
|
- rvm: rbx
|
||||||
|
|
7
Gemfile
7
Gemfile
|
@ -1,2 +1,9 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
gemspec
|
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue