touringplans.gemspec in touringplans-0.1.0 vs touringplans.gemspec in touringplans-0.2.3
- old
+ new
@@ -6,19 +6,22 @@
spec.name = "touringplans"
spec.version = Touringplans::VERSION
spec.authors = ["captproton"]
spec.email = ["carl@wdwhub.net"]
- spec.summary = "TouringPlans.com is a great fan website to plan a trip to Walt Disney World in Florida. This ruby gem makes its API easier to work with."
+ spec.summary = "Easily access the API of touringplans.com as ruby objects."
+ spec.description = "Because ruby objects are better than json."
spec.homepage = "https://github.com/wdwhub/touringplans"
spec.license = "MIT"
- spec.required_ruby_version = ">= 2.4.0"
+ spec.required_ruby_version = ">= 2.6.0"
- spec.metadata["homepage_uri"] = "https://github.com/wdwhub/touringplans"
- spec.metadata["source_code_uri"] = "https://github.com/wdwhub/touringplans"
- spec.metadata["changelog_uri"] = "https://github.com/wdwhub/touringplans/blob/main/Changelog.md"
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
- spec.add_dependency 'httparty', '~> 0.19.0'
+ spec.metadata["homepage_uri"] = spec.homepage
+ spec.metadata["source_code_uri"] = spec.homepage
+ spec.metadata["changelog_uri"] = "#{spec.homepage}/CHANGELOG.md"
+
+ spec.add_dependency "httparty", "~> 0.19.0"
# 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.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|