Skip to content

Commit

Permalink
testing against v4.1.0.rc1 and few updates on dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Luciano Sousa committed May 14, 2014
1 parent 38de187 commit 2c988b9
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -2,8 +2,10 @@ language: ruby
rvm: rvm:
- 1.9.3 - 1.9.3
- 2.0.0 - 2.0.0
- 2.1.2
gemfile: gemfile:
- Gemfile - Gemfile
- gemfiles/rails3_1.gemfile - gemfiles/rails3_1.gemfile
- gemfiles/rails3_2.gemfile - gemfiles/rails3_2.gemfile
- gemfiles/rails4_0.gemfile - gemfiles/rails4_0.gemfile
- gemfiles/rails4_1.gemfile
6 changes: 5 additions & 1 deletion Appraisals
Expand Up @@ -7,5 +7,9 @@ appraise "rails3_2" do
end end


appraise "rails4_0" do appraise "rails4_0" do
gem 'rails', '4.0.0.rc2' gem 'rails', '4.0.5'
end

appraise "rails4_1" do
gem 'rails', '~> 4.1.1'
end end
5 changes: 3 additions & 2 deletions Gemfile.lock
Expand Up @@ -36,9 +36,10 @@ GEM
i18n (~> 0.6) i18n (~> 0.6)
multi_json (~> 1.0) multi_json (~> 1.0)
addressable (2.3.5) addressable (2.3.5)
appraisal (0.5.2) appraisal (1.0.0)
bundler bundler
rake rake
thor (>= 0.14.0)
arel (3.0.2) arel (3.0.2)
builder (3.0.0) builder (3.0.0)
carrier-pigeon (0.7.0) carrier-pigeon (0.7.0)
Expand Down Expand Up @@ -157,7 +158,7 @@ PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
appraisal appraisal (~> 1.0.0)
carrier-pigeon (>= 0.7.0) carrier-pigeon (>= 0.7.0)
coveralls (~> 0.6.5) coveralls (~> 0.6.5)
exception_notification! exception_notification!
Expand Down
2 changes: 1 addition & 1 deletion exception_notification.gemspec
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "mocha", ">= 0.13.0" s.add_development_dependency "mocha", ">= 0.13.0"
s.add_development_dependency "sqlite3", ">= 1.3.4" s.add_development_dependency "sqlite3", ">= 1.3.4"
s.add_development_dependency "coveralls", "~> 0.6.5" s.add_development_dependency "coveralls", "~> 0.6.5"
s.add_development_dependency "appraisal", ">= 0" s.add_development_dependency "appraisal", "~> 1.0.0"
s.add_development_dependency "hipchat", ">= 0.11.0" s.add_development_dependency "hipchat", ">= 0.11.0"
s.add_development_dependency "carrier-pigeon", ">= 0.7.0" s.add_development_dependency "carrier-pigeon", ">= 0.7.0"
end end
2 changes: 1 addition & 1 deletion gemfiles/rails3_1.gemfile
Expand Up @@ -4,4 +4,4 @@ source "https://rubygems.org"


gem "rails", "~> 3.1.0" gem "rails", "~> 3.1.0"


gemspec :path=>"../" gemspec :path => "../"
2 changes: 1 addition & 1 deletion gemfiles/rails3_2.gemfile
Expand Up @@ -4,4 +4,4 @@ source "https://rubygems.org"


gem "rails", "~> 3.2.0" gem "rails", "~> 3.2.0"


gemspec :path=>"../" gemspec :path => "../"
4 changes: 2 additions & 2 deletions gemfiles/rails4_0.gemfile
Expand Up @@ -2,6 +2,6 @@


source "https://rubygems.org" source "https://rubygems.org"


gem "rails", "4.0.0.rc2" gem "rails", "4.0.5"


gemspec :path=>"../" gemspec :path => "../"
7 changes: 7 additions & 0 deletions gemfiles/rails4_1.gemfile
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 4.1.1"

gemspec :path => "../"
2 changes: 1 addition & 1 deletion test/dummy/Gemfile.lock
@@ -1,7 +1,7 @@
PATH PATH
remote: ../../.. remote: ../../..
specs: specs:
exception_notification (4.0.1) exception_notification (4.1.0.rc1)
actionmailer (>= 3.0.4) actionmailer (>= 3.0.4)
activesupport (>= 3.0.4) activesupport (>= 3.0.4)


Expand Down
10 changes: 5 additions & 5 deletions test/dummy/db/schema.rb
Expand Up @@ -9,16 +9,16 @@
# from scratch. The latter is a flawed and unsustainable approach (the more migrations # from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues). # you'll amass, the slower it'll run and the greater likelihood for issues).
# #
# It's strongly recommended to check this file into your version control system. # It's strongly recommended that you check this file into your version control system.


ActiveRecord::Schema.define(:version => 20110729022608) do ActiveRecord::Schema.define(version: 20110729022608) do


create_table "posts", :force => true do |t| create_table "posts", force: true do |t|
t.string "title" t.string "title"
t.text "body" t.text "body"
t.string "secret" t.string "secret"
t.datetime "created_at", :null => false t.datetime "created_at"
t.datetime "updated_at", :null => false t.datetime "updated_at"
end end


end end

0 comments on commit 2c988b9

Please sign in to comment.