mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
311605a825
Move dev dependencies out of gemspec and into Gemfile to gain more control over the private API.
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
|