Skip to content

Commit

Permalink
Added dependency scenarios to the build matrix
Browse files Browse the repository at this point in the history
Including Rails 4
  • Loading branch information
rmm5t committed Mar 24, 2013
1 parent 996c163 commit bdd123e
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
.bundle
vendor/ruby
Gemfile.lock
gemfiles/*.lock
pkg/*
rdoc/*
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@ rvm:
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- rbx-19mode
gemfile:
- Gemfile
- gemfiles/activemodel-3.1.gemfile
- gemfiles/activemodel-3.2.gemfile
- gemfiles/activemodel-master.gemfile
5 changes: 5 additions & 0 deletions gemfiles/activemodel-3.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "activemodel", "~> 3.1.0"

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

gem "activemodel", "~> 3.2.0"

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

gem "activemodel", github: "rails/rails", branch: "master"

gemspec path: "../"
5 changes: 4 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
require "strip_attributes"

class Tableless
include ActiveAttr::Model
include ActiveAttr::BasicModel
include ActiveAttr::TypecastedAttributes
include ActiveAttr::Serialization

include ActiveModel::Validations::Callbacks
end

0 comments on commit bdd123e

Please sign in to comment.