Skip to content

Commit

Permalink
Update Gemfile and gemspec to allow JRuby and Rubinius. Add JRuby and…
Browse files Browse the repository at this point in the history
… Rubinius to .travis.yml
  • Loading branch information
petergoldstein authored and radar committed Dec 16, 2013
1 parent 2355f6d commit 57310eb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
source 'https://rubygems.org'

gem 'sqlite3', :platforms => [:ruby]
gem 'activerecord-jdbcsqlite3-adapter', :platforms => [:jruby]

platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubysl-test-unit'
gem 'rubinius-developer_tools'
end

# Specify your gem's dependencies in paranoia.gemspec
gemspec
3 changes: 1 addition & 2 deletions paranoia.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ Gem::Specification.new do |s|
s.add_dependency "activerecord", "~> 4.0"

s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rake", "0.8.7"
s.add_development_dependency "rake"

s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
Expand Down

0 comments on commit 57310eb

Please sign in to comment.