mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
00cb2eabb1
* Remove gemfiles from version control to match same testing style as Clearance and Suspenders. * MiniTest does not need to be manually included as it is automatically included by Rails by default. * Add spring for Rails 4.1. * Disable Spring to get specs to pass on Rails 4.1. * Add therubyrhino for JRuby. * Remove old references to Rails 3. * Fix JRuby test where output is "1 runs", not "1 tests". * Remove Rails 3.0 reference to "turn".
20 lines
301 B
Ruby
20 lines
301 B
Ruby
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem 'appraisal'
|
|
gem 'aruba'
|
|
gem 'coffee-rails'
|
|
gem 'cucumber'
|
|
gem 'jquery-rails'
|
|
gem 'rake'
|
|
gem 'rspec-rails'
|
|
gem 'uglifier'
|
|
|
|
if RUBY_PLATFORM == 'java'
|
|
gem 'activerecord-jdbcsqlite3-adapter'
|
|
gem 'jdbc-sqlite3'
|
|
gem 'therubyrhino'
|
|
else
|
|
gem 'sqlite3'
|
|
end
|