Sha256: 20922d7bc6f71e883db3dd12c822d88c1cdb000b2af6fd95252fd965683c9cd7

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = "friendly_shipping"
  spec.version       = FriendlyShipping::VERSION
  spec.authors       = ["Martin Meyerhoff", "Matthew Bass"]
  spec.email         = ["mamhoff@gmail.com"]

  spec.summary       = "An integration layer for shipping services"
  spec.description   = "Allows you to quote or ship a Physical::Shipment object"
  spec.homepage      = "https://github.com/friendlycart/friendly_shipping"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "dry-monads", "~> 1.0"
  spec.add_runtime_dependency "jwt", "~> 2.7"
  spec.add_runtime_dependency "money", "~> 6.0"
  spec.add_runtime_dependency "nokogiri", "~> 1.6"
  spec.add_runtime_dependency "physical", "~> 0.5", ">= 0.5.1"
  spec.add_runtime_dependency "rest-client", "~> 2.0"

  spec.required_ruby_version = '>= 3.0'
  spec.metadata['rubygems_mfa_required'] = 'true'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
friendly_shipping-0.9.0 friendly_shipping.gemspec