forked from RiverGlide/CukeSalad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cukesalad.gemspec
35 lines (30 loc) · 1.46 KB
/
cukesalad.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
33
34
35
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cukesalad/version"
Gem::Specification.new do |s|
s.name = "cukesalad"
s.version = CukeSalad::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["RiverGlide"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/RiverGlide/CukeSalad"
s.summary = %q{Friction Free BDD/ATDD with cucumber}
s.description = %q{CukeSalad allows you to focus on the tasks at hand - expressing examples, the roles involved in those examples and the tasks that those roles need to perform with the product under development.
New in this version:
- Single or double quotes can be used for parameters
- Single or double quotes can be used for expectations
- You can initialise the actor by having a role_preparation method in your role
}
s.licenses = ["MIT"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.default_executable = "cukesalad"
s.require_paths = ["lib"]
s.add_runtime_dependency "cucumber", ">=0.10.0"
s.add_runtime_dependency "rspec", ">=2.5.0"
s.add_runtime_dependency "aruba", ">=0.3.5"
s.add_development_dependency "bundler", "~> 1.0.0"
s.add_development_dependency "rake", "~> 0.8.7"
s.add_development_dependency "relish", "= 0.3.0"
end