brentsnook/shokkenki-provider

View on GitHub
shokkenki-provider.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'shokkenki/provider/version'

Gem::Specification.new do |s|
  s.name = 'shokkenki-provider'
  s.version = Shokkenki::Provider::Version::STRING
  s.platform = Gem::Platform::RUBY
  s.license = 'GPL2'
  s.authors = ['Brent Snook']
  s.email = 'brent@fuglylogic.com'
  s.homepage = 'http://github.com/brentsnook/shokkenki-provider'
  s.summary = "shokkenki-#{Shokkenki::Provider::Version::STRING}"
  s.description = 'Example-driven consumer-driven contracts. For providers.'

  s.files = `git ls-files -- lib/*`.split("\n")
  s.test_files = s.files.grep(%r{^spec/})
  s.rdoc_options = ['--charset=UTF-8']
  s.require_path = 'lib'

  s.required_ruby_version = '>= 1.9'

  s.add_runtime_dependency 'rspec'
  s.add_runtime_dependency 'activesupport', '>= 3.0.0'
  s.add_runtime_dependency 'faraday'
  s.add_runtime_dependency 'rack-test'
  s.add_runtime_dependency 'jsonpath'
  s.add_runtime_dependency 'shokkenki-support', '>= 1.1.0'

  s.add_development_dependency 'rake', '~> 10.0.0'
  s.add_development_dependency 'cucumber'
  s.add_development_dependency 'relish'
end