-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
! Fix version requirement for gem
airbrake
* Test against for 2 major supported versions of gem `airbrake`
- Loading branch information
1 parent
d1b25c4
commit 89c21e2
Showing
13 changed files
with
95 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,49 @@ | ||
appraise "rails_3_2" do | ||
version = "~> 3.2.20" | ||
gem 'activesupport', version | ||
appraise "rails_3_2_and_airbrake_3" do | ||
gem 'activesupport', "~> 3.2.20" | ||
gem 'airbrake', "~> 3.1" | ||
end | ||
|
||
appraise "rails_4_0" do | ||
version = "~> 4.0.12" | ||
gem 'activesupport', version | ||
appraise "rails_4_0_and_airbrake_3" do | ||
gem 'activesupport', "~> 4.0.12" | ||
gem 'airbrake', "~> 3.1" | ||
end | ||
|
||
appraise "rails_4_1" do | ||
version = "~> 4.1.8" | ||
gem 'activesupport', version | ||
appraise "rails_4_1_and_airbrake_3" do | ||
gem 'activesupport', "~> 4.1.8" | ||
gem 'airbrake', "~> 3.1" | ||
end | ||
|
||
appraise "rails_4_2" do | ||
version = "~> 4.2.0" | ||
gem 'activesupport', version | ||
appraise "rails_4_2_and_airbrake_3" do | ||
gem 'activesupport', "~> 4.2.0" | ||
gem 'airbrake', "~> 3.1" | ||
end | ||
|
||
appraise "rails_5_0" do | ||
appraise "rails_5_0_and_airbrake_3" do | ||
gem 'activesupport', ">= 5.0.0.beta1", "<= 5.1" | ||
gem 'airbrake', "~> 3.1" | ||
end | ||
|
||
appraise "rails_3_2_and_airbrake_4" do | ||
gem 'activesupport', "~> 3.2.20" | ||
gem 'airbrake', "~> 4.0" | ||
end | ||
|
||
appraise "rails_4_0_and_airbrake_4" do | ||
gem 'activesupport', "~> 4.0.12" | ||
gem 'airbrake', "~> 4.0" | ||
end | ||
|
||
appraise "rails_4_1_and_airbrake_4" do | ||
gem 'activesupport', "~> 4.1.8" | ||
gem 'airbrake', "~> 4.0" | ||
end | ||
|
||
appraise "rails_4_2_and_airbrake_4" do | ||
gem 'activesupport', "~> 4.2.0" | ||
gem 'airbrake', "~> 4.0" | ||
end | ||
|
||
appraise "rails_5_0_and_airbrake_4" do | ||
gem 'activesupport', ">= 5.0.0.beta1", "<= 5.1" | ||
gem 'airbrake', "~> 4.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
source "https://rubygems.org" | ||
|
||
gem "activesupport", "~> 3.2.20" | ||
gem "airbrake", "~> 3.1" | ||
|
||
gemspec :path => "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "activesupport", "~> 3.2.20" | ||
gem "airbrake", "~> 4.0" | ||
|
||
gemspec :path => "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
source "https://rubygems.org" | ||
|
||
gem "activesupport", "~> 4.0.12" | ||
gem "airbrake", "~> 3.1" | ||
|
||
gemspec :path => "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "activesupport", "~> 4.0.12" | ||
gem "airbrake", "~> 4.0" | ||
|
||
gemspec :path => "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
source "https://rubygems.org" | ||
|
||
gem "activesupport", "~> 4.1.8" | ||
gem "airbrake", "~> 3.1" | ||
|
||
gemspec :path => "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "activesupport", "~> 4.1.8" | ||
gem "airbrake", "~> 4.0" | ||
|
||
gemspec :path => "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
source "https://rubygems.org" | ||
|
||
gem "activesupport", "~> 4.2.0" | ||
gem "airbrake", "~> 3.1" | ||
|
||
gemspec :path => "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "activesupport", "~> 4.2.0" | ||
gem "airbrake", "~> 4.0" | ||
|
||
gemspec :path => "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "activesupport", ">= 5.0.0.beta1", "<= 5.1" | ||
gem "airbrake", "~> 4.0" | ||
|
||
gemspec :path => "../" |