Sha256: 23ed0e94accade0a7f8d71df4833bb102127e84f74e2e80a85ed344d071a56a1

Contents?: true

Size: 965 Bytes

Versions: 5

Compression:

Stored size: 965 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'easypost/version'

Gem::Specification.new do |spec|
  spec.name        = 'easypost'
  spec.version     = EasyPost::VERSION
  spec.date        = Time.now.strftime("%Y-%m-%d")
  spec.summary     = 'EasyPost Ruby Client Library'
  spec.description = 'Client library for accessing the EasyPost shipping API via Ruby.'
  spec.authors     = ['Sawyer Bateman']
  spec.email       = 'contact@easypost.com'
  spec.homepage    = 'https://www.easypost.com/docs'

  spec.files         = `git ls-files`.split("\n")
  spec.test_files    = `git ls-files -- test/*`.split("\n")
  spec.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  spec.require_path  = 'lib'

  spec.add_dependency('rest-client', '~> 1.4')
  spec.add_dependency('multi_json', '>= 1.0.4', '< 2')
  spec.add_development_dependency('rspec', "~> 2.13.0")
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
easypost-2.0.13 easypost.gemspec
easypost-2.0.12 easypost.gemspec
easypost-2.0.11 easypost.gemspec
easypost-2.0.10 easypost.gemspec
easypost-2.0.9 easypost.gemspec