Sha256: ba8396da539d6163fcb81d927f9860454db05c7eae23f45c0d04037231b4954f

Contents?: true

Size: 1.1 KB

Versions: 3

Compression:

Stored size: 1.1 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "shopify-mock"
  s.version     = ShopifyMock::VERSION
  s.authors     = ["Travis Haynes"]
  s.email       = ["travis.j.haynes@gmail.com"]
  s.homepage    = "https://github.com/travishaynes/shopify-mock"
  s.summary     = %q{Serves Shopify resources via FakeWeb for easily testing Shopify apps.}
  s.description = %q{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.rubyforge_project = "shopify-mock"

  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("rspec", [">= 2.6.0"])
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shopify-mock-0.0.3 shopify-mock.gemspec
shopify-mock-0.0.2 shopify-mock.gemspec
shopify-mock-0.0.1 shopify-mock.gemspec