Skip to content
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 Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
open_fda_api (0.0.13)
open_fda_api (0.1.0)
faraday (~> 2.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/open_fda_api/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module OpenFdaApi
VERSION = "0.0.13"
VERSION = "0.1.0"
end
16 changes: 6 additions & 10 deletions open_fda_api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,23 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]

spec.summary = "Ruby wrapper for the openFDA API: https://open.fda.gov/apis/"
spec.description = "A Ruby gem for interacting with the openFDA API, providing access to drugs, " \
"devices, food, tobacco, animal & veterinary, and other FDA datasets."
spec.homepage = "https://github.com/hebron-george/open_fda_api"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"

# 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 { |f| f.match(%r{\A(?:test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

# Uncomment to register a new dependency of your gem
spec.add_dependency "faraday", "~> 2.0"

# For more information and examples about making a new gem, checkout our
# guide at: https://bundler.io/guides/creating_gem.html
spec.metadata["rubygems_mfa_required"] = "true"
end