forked from codegram/spinach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spinach.gemspec
32 lines (29 loc) · 1.42 KB
/
spinach.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
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/spinach/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Josep Jaume Rey", "Josep M. Bach", "Oriol Gual", "Marc Divins Castellvi"]
gem.email = ["[email protected]", "[email protected]",
gem.description = %q{Spinach is a BDD framework on top of gherkin}
gem.summary = %q{Spinach is a BDD framework on top of gherkin}
gem.homepage = "http://github.com/codegram/spinach"
gem.license = 'MIT'
gem.add_runtime_dependency 'gherkin-ruby', '>= 0.3.2'
gem.add_runtime_dependency 'colorize'
gem.add_runtime_dependency 'json'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'mocha', '~> 1.0'
gem.add_development_dependency 'sinatra'
gem.add_development_dependency 'capybara'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'minitest', '< 5.0'
gem.add_development_dependency 'fakefs', ">= 0.5.2"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "spinach"
gem.require_paths = ["lib"]
gem.version = Spinach::VERSION
end