Skip to content
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

prepared gemspec for RubyGems upload #3

Merged
merged 1 commit into from
Nov 6, 2015
Merged
Show file tree
Hide file tree
Changes from all 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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ pkg

## RubyGems

interval_tree-*.gem
augmented_interval_tree-*.gem
10 changes: 5 additions & 5 deletions interval_tree.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |s|
s.name = 'interval_tree'
s.name = 'augmented_interval_tree'
s.version = '0.1.0'
s.summary = "A Ruby implementation of the Interval Tree data structure"
s.summary = "A Ruby implementation of the Augmented Interval Tree data structure"
s.description = <<-END.gsub(/^ {4}/, '')
A Ruby implementation of the Interval Tree data structure.
A Ruby implementation of the Augmented Interval Tree data structure.
See also: http://en.wikipedia.org/wiki/Interval_tree
END
s.authors = ["Hiroyuki Mishima, Simeon Simeonov, Carlos Alonso"]
s.email = ['info@mrcalonso.com']
s.authors = ["Hiroyuki Mishima", "Simeon Simeonov", "Carlos Alonso"]
s.email = ['missy@be.to', 'info@mrcalonso.com']
s.files = ["lib/interval_tree.rb"]
s.homepage = 'https://github.com/misshie/interval-tree'
s.license = 'MIT'
Expand Down