inspire9/shopify_webhook

View on GitHub
shopify_webhook.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
Gem::Specification.new do |spec|
  spec.name          = 'shopify_webhook'
  spec.version       = '0.1.0'
  spec.authors       = ['Pat Allan']
  spec.email         = ['pat@freelancing-gods.com']
  spec.summary       = %q{A Rack endpoint for handling Shopify webhooks.}
  spec.description   = %q{A Rack endpoint for handling Shopify webhooks, and fires an ActiveSupport notification for each succesful request.}
  spec.homepage      = 'http://github.com/inspire9/shopify_webhook'
  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_runtime_dependency 'activesupport', '>= 3.1.0'
  spec.add_runtime_dependency 'multi_json',    '>= 1.3.0'
  spec.add_runtime_dependency 'rack'

  spec.add_development_dependency 'rack-test', '~> 0.6.2'
  spec.add_development_dependency 'rspec',     '~> 3.1.0'
end