-
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.
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. Closes [#376]. [#376]: #376 [rails]: https://github.com/rails/rails
- Loading branch information
1 parent
ce5db79
commit fcc295a
Showing
10 changed files
with
61 additions
and
11 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
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 => "../" |