Skip to content

Commit

Permalink
Update Gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
owaiswiz committed Jan 18, 2020
1 parent c0309db commit 18d9cf3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 16 deletions.
24 changes: 24 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
PATH
remote: .
specs:
rss_watcher (0.1.0)
rss (~> 0.2.8)

GEM
remote: https://rubygems.org/
specs:
minitest (5.14.0)
rake (10.5.0)
rss (0.2.8)

PLATFORMS
ruby

DEPENDENCIES
bundler (~> 1.17)
minitest (~> 5.0)
rake (~> 10.0)
rss_watcher!

BUNDLED WITH
1.17.3
19 changes: 3 additions & 16 deletions rss_watcher.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,8 @@ Gem::Specification.new do |spec|
spec.authors = ["Owais"]
spec.email = ["[email protected]"]

spec.summary = %q{TODO: Write a short summary, because RubyGems requires one.}
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."

# 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'"

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.summary = %q{A Ruby Gem For Watching RSS Feeds}
spec.homepage = "https://github.com/owaiswiz/rss_watcher"

# 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.
Expand All @@ -35,6 +21,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "rss", "~> 0.2.8"
spec.add_development_dependency "bundler", "~> 1.17"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "minitest", "~> 5.0"
Expand Down

0 comments on commit 18d9cf3

Please sign in to comment.