Skip to content

Commit

Permalink
v0.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
minad committed May 3, 2016
1 parent 0aad2ee commit 6c555f1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.2.9 (2016-03-05)
0.2.10 (2016-03-05)

* Version locking

Expand Down
2 changes: 1 addition & 1 deletion lib/sciruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
module SciRuby
# SciRuby version string
# @api public
VERSION = '0.2.9'
VERSION = '0.2.10'
end
4 changes: 2 additions & 2 deletions sciruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Gem::Specification.new do |s|
s.license = 'BSD'
s.homepage = 'http://sciruby.com'
s.summary =
s.description = "Scientific gems for Ruby#{__FILE__ =~ /full/ ? ' (Full installation)' : ''}"
s.description = "Scientific gems for Ruby. #{__FILE__ =~ /full/ ? 'This is the full installation with rigid version constraints.' : 'See the sciruby-full gem for a full installation of many compatible scientific gems.'}"

if __FILE__ =~ /full/
s.files = %w(CHANGES CONTRIBUTING.md README.md LICENSE sciruby-full.gemspec)

s.add_runtime_dependency 'sciruby', "= #{SciRuby::VERSION}"
Helper.installed_gems.each {|gem| s.add_runtime_dependency gem[:name], *gem[:version] }
Helper.installed_gems.each {|gem| s.add_runtime_dependency gem[:name], "= #{gem[:installed_version]}" }
else
s.files = `git ls-files`.split($/)
s.files.delete 'sciruby-full.gemspec'
Expand Down

0 comments on commit 6c555f1

Please sign in to comment.