Skip to content

Commit

Permalink
added gemfiles to travis config to make sure it works with and withou…
Browse files Browse the repository at this point in the history
…t active_model
  • Loading branch information
betesh committed Aug 15, 2014
1 parent 5ba7074 commit 1ffbb41
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 9 deletions.
12 changes: 9 additions & 3 deletions .travis.yml
@@ -1,8 +1,14 @@
notifications:
disabled: true
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- ree
- ree
gemfile:
- Gemfile
- gemfiles/active_model_2_1
- gemfiles/active_model_3_0
- gemfiles/active_model_3_1
- gemfiles/active_model_3_2
- gemfiles/active_model_4_0
- gemfiles/active_model_4_1
6 changes: 0 additions & 6 deletions Gemfile
@@ -1,9 +1,3 @@
source "http://rubygems.org"

gemspec

group :development, :test do
gem 'rake'
gem 'rdoc'
gem 'activemodel', '>= 2.1'
end
5 changes: 5 additions & 0 deletions gemfiles/active_model_2_1
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'activemodel', '= 2.1.0'
5 changes: 5 additions & 0 deletions gemfiles/active_model_3_0
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'activemodel', '= 2.1.0'
5 changes: 5 additions & 0 deletions gemfiles/active_model_3_1
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'activemodel', '= 3.1.0'
5 changes: 5 additions & 0 deletions gemfiles/active_model_3_2
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'activemodel', '= 3.2.0'
5 changes: 5 additions & 0 deletions gemfiles/active_model_3_3
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'active_model', '= 3.3.0'
5 changes: 5 additions & 0 deletions gemfiles/active_model_4_0
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'activemodel', '= 4.0.0'
5 changes: 5 additions & 0 deletions gemfiles/active_model_4_1
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'activemodel', '= 4.1.0'
1 change: 1 addition & 0 deletions validates_email_format_of.gemspec
Expand Up @@ -16,5 +16,6 @@ spec = Gem::Specification.new do |s|
s.require_paths = ['lib']

s.add_dependency 'i18n'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rspec'
end

0 comments on commit 1ffbb41

Please sign in to comment.