Skip to content

Commit

Permalink
update Gemfiles for unit tests for compatibility with JRuby
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanlarsen committed Feb 4, 2013
1 parent 9b8d77c commit 1abd66d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
8 changes: 7 additions & 1 deletion hobo/Gemfile
@@ -1,9 +1,15 @@
source "http://rubygems.org"

gem 'rubydoctest', :git => 'git://github.com/bryanlarsen/rubydoctest.git'
gem 'rails', '3.2.8'
gem 'rails', '3.2.11'
gemspec :path => "../dryml"
gemspec :path => "../hobo_support"
gemspec :path => "../hobo_fields"
gemspec
gem 'will_paginate', :git => 'git://github.com/Hobo/will_paginate.git'
platform :ruby do
gem 'sqlite3'
end
platform :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
end
1 change: 0 additions & 1 deletion hobo/hobo.gemspec
Expand Up @@ -20,7 +20,6 @@ Gem::Specification.new do |s|
s.add_development_dependency('shoulda', [">= 0"])
s.add_development_dependency('irt', ["= 1.2.11"])
s.add_development_dependency('mocha')
s.add_development_dependency('sqlite3')
s.add_development_dependency('yard')

s.executables = ["hobo"]
Expand Down
10 changes: 7 additions & 3 deletions hobo_fields/Gemfile
@@ -1,9 +1,13 @@
source "http://rubygems.org"

gem 'rubydoctest', :git => 'git://github.com/bryanlarsen/rubydoctest.git'
gem 'rails', '3.2.8'
gem 'rails', '3.2.11'
gem 'yard'
gemspec :path => "../hobo_support"
gemspec
gem 'sqlite3'

platform :ruby do
gem 'sqlite3'
end
platform :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
end

0 comments on commit 1abd66d

Please sign in to comment.