-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes [#376]. Required changes ---------------- Run test suite against the latest `5.0.0.betaX` and `master` branches of [`rails/rails`][rails]. Since `EmberController` extends `ApplicationController`, which can now extend from either `ActionController::Base` (which implements `helper_method`) and `ActionController::API` (which doesn't implement `helper_method`), we can't depend on that API existing. Remove call to `helper_method` from `EmberController`, as it is no longer supported. Support changes --------------- Rails 5 depends on `rack@2.0.x`, which **requires** Ruby `2.2.2` or greater. In order to support Rails 5, we will no longer support versions of Ruby prior to `2.2.2`. [#376]: #376 [rails]: https://github.com/rails/rails
- Loading branch information
1 parent
8746bf3
commit 77de5f4
Showing
9 changed files
with
67 additions
and
9 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
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
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
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,23 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "appraisal" | ||
gem "rails", "5.0.0.beta2" | ||
gem "pry" | ||
|
||
group :development, :test do | ||
gem "high_voltage", github: "thoughtbot/high_voltage" | ||
gem "rspec-core", github: "rspec/rspec-core" | ||
gem "rspec-support", github: "rspec/rspec-support" | ||
gem "rspec-expectations", github: "rspec/rspec-expectations" | ||
gem "rspec-mocks", github: "rspec/rspec-mocks" | ||
gem "rspec-rails", github: "rspec/rspec-rails" | ||
end | ||
|
||
group :test do | ||
gem "poltergeist", "~> 1.8.0" | ||
gem "codeclimate-test-reporter", :require => nil | ||
end | ||
|
||
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,23 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "appraisal" | ||
gem "rails", :git => "https://github.com/rails/rails.git", :branch => "master" | ||
gem "pry" | ||
|
||
group :development, :test do | ||
gem "high_voltage", github: "thoughtbot/high_voltage" | ||
gem "rspec-core", github: "rspec/rspec-core" | ||
gem "rspec-support", github: "rspec/rspec-support" | ||
gem "rspec-expectations", github: "rspec/rspec-expectations" | ||
gem "rspec-mocks", github: "rspec/rspec-mocks" | ||
gem "rspec-rails", github: "rspec/rspec-rails" | ||
end | ||
|
||
group :test do | ||
gem "poltergeist", "~> 1.8.0" | ||
gem "codeclimate-test-reporter", :require => nil | ||
end | ||
|
||
gemspec :path => "../" |