Sha256: b2c8922378a7774a062de75c39e7cfcd3bb8875b66310b3629c9cf5668f64bdc

Contents?: true

Size: 1.05 KB

Versions: 5

Compression:

Stored size: 1.05 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "magento_remote"
  spec.version       = MagentoRemote::VERSION
  spec.authors       = ["Felix Wolfsteller"]
  spec.email         = ["felix.wolfsteller@gmail.com"]
  spec.summary       = %q{Login to a magento shop and do stuff.}
  spec.description   = %q{Allows ordering through a (defaultish) magento web page.}
  spec.homepage      = 'https://github.com/fwolfst/magento_remote'
  spec.license       = "MIT"

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

  spec.add_dependency 'mechanize', "~> 2.7"
  spec.add_dependency 'terminal-table', "~> 1.4"

  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
magento_remote-0.1.6 magento_remote.gemspec
magento_remote-0.1.5 magento_remote.gemspec
magento_remote-0.1.4 magento_remote.gemspec
magento_remote-0.1.3 magento_remote.gemspec
magento_remote-0.1.2 magento_remote.gemspec