forked from jolmg/parsby
-
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.
- Loading branch information
Showing
1 changed file
with
12 additions
and
11 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 |
---|---|---|
|
@@ -6,25 +6,26 @@ require "parsby/version" | |
Gem::Specification.new do |spec| | ||
spec.name = "parsby" | ||
spec.version = Parsby::VERSION | ||
spec.licenses = ["MIT"] | ||
spec.authors = ["Jorge Luis Martinez Gomez"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = %q{Parser combinator library inspired by Haskell's Parsec} | ||
#spec.description = %q{TODO: Write a longer description or delete this line.} | ||
#spec.homepage = "TODO: Put your gem's website or public repo URL here." | ||
spec.homepage = "https://github.com/jolmg/parsby" | ||
|
||
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | ||
# to allow pushing to a single host or delete this section to allow pushing to any host. | ||
#if spec.respond_to?(:metadata) | ||
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" | ||
if spec.respond_to?(:metadata) | ||
#spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" | ||
|
||
# #spec.metadata["homepage_uri"] = spec.homepage | ||
# #spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here." | ||
# #spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here." | ||
#else | ||
# raise "RubyGems 2.0 or newer is required to protect against " \ | ||
# "public gem pushes." | ||
#end | ||
#spec.metadata["homepage_uri"] = spec.homepage | ||
#spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here." | ||
spec.metadata["changelog_uri"] = "https://github.com/jolmg/parsby/blob/master/CHANGELOG.md" | ||
else | ||
raise "RubyGems 2.0 or newer is required to protect against " \ | ||
"public gem pushes." | ||
end | ||
|
||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
|
@@ -38,5 +39,5 @@ Gem::Specification.new do |spec| | |
spec.add_development_dependency "bundler", "~> 1.17" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "rspec", "~> 3.0" | ||
spec.add_development_dependency "pry" | ||
spec.add_development_dependency "pry", "~> 0" | ||
end |