Skip to content

Commit

Permalink
Added gemfile permutations to the travis build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
rmm5t committed Mar 24, 2013
1 parent db1cc23 commit c1a6f73
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ spec/public
.rvmrc .rvmrc
.ruby-version .ruby-version
Gemfile.lock Gemfile.lock
gemfiles/*.lock
log/* log/*
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ rvm:
- 2.0.0 - 2.0.0
- jruby-19mode - jruby-19mode
- rbx-19mode - rbx-19mode

gemfile:
- gemfiles/carrierwave-master.gemfile
- gemfiles/mongoid-3.0.gemfile
- gemfiles/mongoid-3.1.gemfile
5 changes: 5 additions & 0 deletions gemfiles/carrierwave-master.gemfile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "carrierwave", github: "jnicklas/carrierwave", branch: "master"

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/mongoid-3.0.gemfile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "mongoid", github: "mongoid/mongoid", branch: "3.0.0-stable"

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/mongoid-3.1.gemfile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "mongoid", github: "mongoid/mongoid", branch: "3.1.0-stable"

gemspec path: "../"

0 comments on commit c1a6f73

Please sign in to comment.