-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unnecessary dependencies #10
base: develop
Are you sure you want to change the base?
Conversation
The dependency on The dependency on |
This conversion is done by Transpec 3.2.2 with the following command: transpec * 25 conversions from: obj.should to: expect(obj).to * 21 conversions from: == expected to: eq(expected) * 2 conversions from: lambda { }.should to: expect { }.to * 1 conversion from: collection.should have(n).items to: expect(collection.size).to eq(n) * 1 conversion from: obj.should_not_receive(:message) to: expect(obj).not_to receive(:message) * 1 conversion from: obj.should_receive(:message) to: expect(obj).to receive(:message) For more details: https://github.com/yujinakayama/transpec#supported-conversions
@benlangfeld thanks. I re-added the dependency on Adhearsion and set it to 3.0.0.rc1 |
|
||
s.add_development_dependency "rspec", "~> 2.7.0" | ||
s.add_development_dependency "rspec" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove these version specs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I get the following error if I keep thor at "~> 0.14.0"
adhearsion-drb was resolved to 1.1.1, which depends on
adhearsion (> 3.0.0.rc1) was resolved to 3.0.0.rc1, which depends on> 0.18.0)
thor (
guard-rspec was resolved to 4.7.3, which depends on
guard (~> 2.1) was resolved to 2.14.0, which depends on
thor (>= 0.18.1)
This PR removes i18n and adhearsion as runtime dependencies. This helped me when using this plugin with the latest version of Adherasion