Sha256: 46a85ae7887690a9ba1e51e246123ff276da580fc7c3cb411392532e4135dc57

Contents?: true

Size: 980 Bytes

Versions: 4

Compression:

Stored size: 980 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     = ['Jon Calhoun', '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

4 entries across 4 versions & 1 rubygems

Version Path
easypost-2.0.8 easypost.gemspec
easypost-2.0.7 easypost.gemspec
easypost-2.0.6 easypost.gemspec
easypost-2.0.5 easypost.gemspec