Skip to content

Commit

Permalink
Fix up gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Campbell committed Nov 30, 2017
1 parent 8f9073a commit 04f4229
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
- Add save and restore methods to backprop.

*Michael Campbell*

- Fix alias error.

*Michael Campbell*
Expand Down
2 changes: 1 addition & 1 deletion lib/rann/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RANN
VERSION = "0.2.4"
VERSION = "0.2.5"
end
5 changes: 3 additions & 2 deletions rann.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
spec.summary = %q{Ruby Artificial Neural Networks}
spec.description = %q{Libary for working with neural networks in Ruby.}
spec.homepage = "https://github.com/mikecmpbll/rann"
spec.licenses = 'Apache-2.0'

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
Expand All @@ -20,8 +21,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}){ |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_runtime_dependency "parallel", "~> 1.12.0"
spec.add_runtime_dependency "ruby-graphviz", "~> 1.2.3"
spec.add_runtime_dependency 'parallel', '~> 1.12', '>= 1.12.0'
spec.add_runtime_dependency 'ruby-graphviz', '~> 1.2', '>= 1.2.3'

spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 10.0"
Expand Down

0 comments on commit 04f4229

Please sign in to comment.