Sha256: 618bde8587524a8dddc9f75efdf56bc7299845ed6865d4fb4442152576945ef9
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
# -*- encoding: utf-8 -*- $LOAD_PATH.push File.expand_path('../lib', __FILE__) require 'tophatter_merchant/version' Gem::Specification.new do |s| s.name = 'tophatter-merchant' s.version = TophatterMerchant::VERSION s.platform = Gem::Platform::RUBY s.licenses = ['MIT'] s.authors = ['Chris Estreich'] s.email = ['chris@tophatter.com'] s.homepage = 'https://github.com/tophatter/merchant-api-ruby' s.summary = 'Manage your inventory and fulfill orders on Tophatter.' s.description = 'The Tophatter merchant platform is an e-commerce platform. It allows merchants to manage inventory and fulfill orders on Tophatter.' s.required_ruby_version = '~> 2.0' s.add_dependency 'rest-client', '~> 1.6' s.add_dependency 'activemodel', '~> 4.2' s.post_install_message = 'Documentation is available at: https://tophatter.readme.io/' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } s.require_paths = ['lib'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tophatter-merchant-1.0 | tophatter-merchant.gemspec |