forked from IbnuFajar/cucumber-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcucumber-api.gemspec
26 lines (23 loc) · 960 Bytes
/
cucumber-api.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cucumber-api/version"
Gem::Specification.new do |s|
s.name = "cucumber-api"
s.version = CucumberApi::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ha Duy Trung"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/hidroh/cucumber-api"
s.summary = %q{API validator with Cucumber}
s.description = %q{cucumber-api allows API JSON response validation and verification in BDD style.}
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
s.required_ruby_version = '>= 1.9.3'
s.license = 'Apache-2.0'
# lock addressable down to the last one that works on MRI 1.9.3
s.add_dependency('addressable', '2.4')
s.add_dependency('cucumber', '~> 2.0')
s.add_dependency('jsonpath', '~> 0.5')
s.add_dependency('rest-client', '~> 1.8')
s.add_dependency('json-schema', '~> 2.5')
end