Sha256: 27a5c9cb83c22ad54905d8491504adc46cefa6b317cda85c74a18f25d6be4f68

Contents?: true

Size: 1.81 KB

Versions: 5

Compression:

Stored size: 1.81 KB

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "pinata/version"

Gem::Specification.new do |spec|
  spec.name = "pinata"
  spec.version = Pinata::VERSION
  spec.authors = ["Onyx Mueller"]
  spec.email = ["contact@onyxmueller.net"]

  spec.summary = "Ruby bindings for the Pinata API"
  spec.description = "Ruby bindings for the Pinata API. More info about Pinata can be found here: https://docs.pinata.cloud/quickstart"
  spec.homepage = "https://github.com/onyxmueller/pinata-ruby"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/onyxmueller/pinata-ruby"
  spec.metadata["changelog_uri"] = "https://github.com/onyxmueller/pinata-ruby/changelog.md"

  # 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(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (File.expand_path(f) == __FILE__) ||
        f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
    end
  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 "example-gem", "~> 1.0"

  # For more information and examples about making a new gem, check out our
  # guide at: https://bundler.io/guides/creating_gem.html

  spec.add_dependency "faraday", "~> 2.12"
  spec.add_dependency "faraday-multipart", "~> 1.0.4"
  spec.add_dependency "marcel", "~> 1.0.4"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pinata-1.0.5 pinata.gemspec
pinata-1.0.4 pinata.gemspec
pinata-1.0.3 pinata.gemspec
pinata-1.0.2 pinata.gemspec
pinata-1.0.1 pinata.gemspec