1
0
Fork 0
mirror of https://github.com/pry/pry-rails.git synced 2022-11-09 12:36:03 -05:00

Update gems to latest versions, add explicit gemfiles to repo, and add .travis.yml

This commit is contained in:
Peter M. Goldstein 2013-07-24 09:00:51 -07:00
parent 1f1d053090
commit d35eecca64
7 changed files with 54 additions and 4 deletions

2
.gitignore vendored
View file

@ -4,4 +4,4 @@ Gemfile.lock
pkg/*
spec/log
spec/tmp
gemfiles
gemfiles/*.lock

16
.travis.yml Normal file
View file

@ -0,0 +1,16 @@
services: mongodb
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/rails30.gemfile
- gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile
- gemfiles/rails4.gemfile
matrix:
exclude:
- rvm: 1.9.2
gemfile: gemfiles/rails32.gemfile
- rvm: 1.9.2
gemfile: gemfiles/rails4.gemfile

View file

@ -1,16 +1,16 @@
appraise "rails30" do
gem "rails", "3.0.15"
gem "rails", "3.0.20"
gem "sqlite3"
end
appraise "rails31" do
gem "rails", "3.1.6"
gem "rails", "3.1.12"
gem "mongoid"
gem "sqlite3"
end
appraise "rails32" do
gem "rails", "3.2.6"
gem "rails", "3.2.14"
gem "mongoid"
gem "sqlite3"
end

8
gemfiles/rails30.gemfile Normal file
View file

@ -0,0 +1,8 @@
# This file was generated by Appraisal
source "http://rubygems.org"
gem "rails", "3.0.20"
gem "sqlite3"
gemspec :path=>"../"

9
gemfiles/rails31.gemfile Normal file
View file

@ -0,0 +1,9 @@
# This file was generated by Appraisal
source "http://rubygems.org"
gem "rails", "3.1.12"
gem "mongoid"
gem "sqlite3"
gemspec :path=>"../"

9
gemfiles/rails32.gemfile Normal file
View file

@ -0,0 +1,9 @@
# This file was generated by Appraisal
source "http://rubygems.org"
gem "rails", "3.2.14"
gem "mongoid"
gem "sqlite3"
gemspec :path=>"../"

8
gemfiles/rails4.gemfile Normal file
View file

@ -0,0 +1,8 @@
# This file was generated by Appraisal
source "http://rubygems.org"
gem "rails", "4.0.0"
gem "sqlite3"
gemspec :path=>"../"