forked from seangransee/ruby-geometry
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refresh gemspec, Gemfile, Rakefile and other auxiliary files
- Loading branch information
1 parent
ecc9413
commit 5a7de98
Showing
4 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ nbproject | |
bin/* | ||
|
||
.idea | ||
/Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# A sample Gemfile | ||
source "http://rubygems.org" | ||
|
||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
require 'rake' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "ruby-geometry" | ||
s.version = "0.0.4" | ||
s.author = "Daniel Vartanov" | ||
s.email = "[email protected]" | ||
s.author = ["Daniel Vartanov"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "http://github.com/DanielVartanov/ruby-geometry" | ||
s.platform = Gem::Platform::RUBY | ||
s.summary = "Implementation of basic 2D geometry algorithms in Ruby" | ||
s.files = FileList["{lib}/**/*"].to_a | ||
s.require_path = "lib" | ||
s.test_files = FileList["{test}/**/*test.rb"].to_a | ||
s.has_rdoc = false | ||
s.license = "MIT" | ||
|
||
s.files = `git ls-files`.split($/) | ||
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
s.test_files = s.files.grep(%r{^(test|spec|features)/}) | ||
s.require_paths = ["lib"] | ||
|
||
s.add_dependency('activesupport') | ||
s.add_dependency('memoist') | ||
s.add_dependency 'activesupport' | ||
s.add_dependency 'memoist' | ||
|
||
s.add_development_dependency('rake') | ||
s.add_development_dependency 'bundler' | ||
s.add_development_dependency 'rake' | ||
end |