Sha256: 3b8edea3e797122251371b6be0ce7c262267feb3e2ef4c06054bf9e44a485466

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)

Gem::Specification.new do |s|
  s.name        = "shopify-mock-new"
  s.version     = "0.1"
  s.authors     = ["Alex Croteau-Pothier"]
  s.email       = ["alex@alexcp.com"]
  s.homepage    = "https://github.com/alexcp/shopify-mock"
  s.summary     = %q{Serves Shopify resources via FakeWeb for easily testing Shopify apps.}
  s.description = %q{Fork of travishaynes/shopify-mock
  This gem is used for testing Shopify apps without having to actually connect to
Shopify to develop the application.

You can use this gem explicitely for testing, or you can also use it in your
development environment to speed things up when fiddling around in the web
browser, or in the console.}

  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"]

  s.add_dependency("fakeweb", [">= 1.3.0"])
  s.add_dependency("json", [">= 1.5.1"])
  s.add_dependency("rspec", [">= 2.6.0"])
  s.add_dependency("rake", [">= 0.8.7"])
  s.add_dependency("shopify_api", [">= 1.2.5"])
  s.add_dependency("activesupport", [">= 3.0.0"])
  s.add_dependency("libxml-ruby", [">= 0.8.3"])
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shopify-mock-new-0.1 shopify-mock-new.gemspec