Sha256: b437be1d32d199d1ac850d1c6738793aabd1bdcc8604391efcd052a35143d98e
Contents?: true
Size: 1.16 KB
Versions: 7
Compression:
Stored size: 1.16 KB
Contents
# -*- encoding: utf-8 -*- raise 'VERSION must be specified in environment' unless ENV['VERSION'] Gem::Specification.new do |s| s.name = 'brine-dsl' s.version = ENV['VERSION'][1..-1] s.platform = Gem::Platform::RUBY s.authors = ["Matt Whipple"] s.email = ["mwhipple@brightcove.com"] s.license = 'MIT' s.homepage = "http://github.com/brightcove/brine" s.summary = "Cucumber@REST in Brine" s.description = "Cucumber@REST in Brine" s.required_ruby_version = '>= 2.3.0' s.add_runtime_dependency 'cucumber', '~> 3.1' s.add_runtime_dependency 'mustache', '~> 1.0' s.add_runtime_dependency 'oauth2', '~> 1.4' s.add_runtime_dependency 'rspec', '~> 3.7' s.add_runtime_dependency 'jsonpath', '~> 0.8' s.add_runtime_dependency 'faraday', '~> 0.12' s.add_runtime_dependency 'faraday_middleware', '~> 0.12' s.add_development_dependency 'rake', '~> 12.3' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.require_paths = ['lib'] end
Version data entries
7 entries across 7 versions & 1 rubygems