-
Notifications
You must be signed in to change notification settings - Fork 15
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
gemspec bundler version removed #72
base: master
Are you sure you want to change the base?
Conversation
@@ -70,7 +70,7 @@ script: | |||
- if [[ "${RUBOCOP}" == "yes" ]]; then rubocop; fi | |||
|
|||
# Test ruby gem | |||
- gem install gem-path --no-ri --no-rdoc | |||
- gem install gem-path --no-document |
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.
In latest version of Ruby (> 2.2) , we need to use --no-document
, because --no-ri --no-rdoc
is deprecated.
@@ -12,7 +12,7 @@ Gem::Specification.new do |gem| | |||
gem.extensions = ['ext/symengine/extconf.rb'] | |||
gem.license = 'MIT' | |||
|
|||
gem.add_development_dependency 'bundler', '~> 1.7' | |||
gem.add_development_dependency 'bundler' |
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.
Old version doesn't support the latest Ruby versions.
Ping @isuruf |
2ded9ad
to
f2baf3e
Compare
Fixes #71