Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Author

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.

- cd $HOME/gems/symengine-0.1.0/
- bundle exec rspec

Expand Down
2 changes: 1 addition & 1 deletion symengine.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Copy link
Author

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.

gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'rdoc', '~> 4.0'
Expand Down