Open
Conversation
To get rid of the following deprecation warning: ``` The source :rubygems is deprecated because HTTP requests are insecure. Please change your source to 'https://rubygems.org' if possible, or 'http://rubygems.org' if not. ```
RSpec needed to be upgraded to void getting this error when installing the dependencies:
```
An error occurred while installing rspec-expectations (2.7.0), and Bundler cannot continue.
Make sure that `gem install rspec-expectations -v '2.7.0'` succeeds before bundling.
```
Adding rspec-it was necessary since rpsec -v2.99.0 extracted `its {}` type of assertion in the process of migrating to Rspec 3.
This conversion is done by Transpec 2.3.6 with the following command:
transpec --keep its
* 51 conversions
from: obj.should
to: expect(obj).to
* 44 conversions
from: == expected
to: eq(expected)
For more details: https://github.com/yujinakayama/transpec#supported-conversions
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To get rid of the following deprecation warning:
RSpec needed to be upgraded to void getting this error when installing the dependencies:
Adding rspec-it was necessary since rpsec -v2.99.x extracted
its {}type of assertion in the process of migrating to Rspec 3.