Sha256: fe501381c9582f4cf1a67420ddb1320d6c2eb71b44ad97d87bf7758d811ae0ae
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
# -*- encoding: utf-8 -*- # To publish the next version: # gem build tophatter-merchant.gemspec # gem push tophatter-merchant-{VERSION}.gem Gem::Specification.new do |s| s.name = 'tophatter-merchant' s.version = '1.3.0' 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.extra_rdoc_files = ['README.md'] s.required_ruby_version = '~> 2.0' s.add_dependency 'rest-client', '~> 1.6' 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.3.0 | tophatter-merchant.gemspec |