1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00

Explicitly define gemfiles for Travis

Closes #122
This commit is contained in:
Joshua Clayton 2014-07-25 16:11:58 -04:00
parent d5a435dab0
commit 37b1f02b9f
5 changed files with 57 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,6 +1,6 @@
*.swp
.bundle
gemfiles/
gemfiles/*.lock
coverage
factory_girl_rails-*.gem
pkg

View file

@ -14,3 +14,7 @@ install:
- "travis_retry bundle install"
- "bundle exec appraisal generate"
- "travis_retry bundle exec appraisal install"
gemfile:
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
- gemfiles/rails4.1.gemfile

17
gemfiles/rails3.2.gemfile Normal file
View file

@ -0,0 +1,17 @@
# This file was generated by Appraisal
source "https://rubygems.org"
gem "appraisal"
gem "aruba"
gem "coffee-rails"
gem "cucumber"
gem "jquery-rails"
gem "rake"
gem "rspec-rails"
gem "uglifier"
gem "sqlite3"
gem "rails", "~> 3.2.18"
gem "sass-rails"
gemspec :path => "../"

17
gemfiles/rails4.0.gemfile Normal file
View file

@ -0,0 +1,17 @@
# This file was generated by Appraisal
source "https://rubygems.org"
gem "appraisal"
gem "aruba"
gem "coffee-rails"
gem "cucumber"
gem "jquery-rails"
gem "rake"
gem "rspec-rails"
gem "uglifier"
gem "sqlite3"
gem "rails", "~> 4.0.5"
gem "sass-rails"
gemspec :path => "../"

18
gemfiles/rails4.1.gemfile Normal file
View file

@ -0,0 +1,18 @@
# This file was generated by Appraisal
source "https://rubygems.org"
gem "appraisal"
gem "aruba"
gem "coffee-rails"
gem "cucumber"
gem "jquery-rails"
gem "rake"
gem "rspec-rails"
gem "uglifier"
gem "sqlite3"
gem "rails", "~> 4.1.1"
gem "sass-rails", "~> 4.0.3"
gem "spring"
gemspec :path => "../"