-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeaturemap.gemspec
More file actions
22 lines (20 loc) · 931 Bytes
/
featuremap.gemspec
File metadata and controls
22 lines (20 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "version"
Gem::Specification.new do |s|
s.name = "featuremap"
s.version = Featuremap::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Matthias Carell"]
s.email = ["rumpelcenter-featuremap at yahoo.com"]
s.homepage = "https://github.com/mckryton/featuremap"
s.summary = %q{A script to convert Gherkin features into a mindmap}
s.description = %q{Featurmaps helps you to visualize the functionality of your \
application by turning your Gherkin features into a mindmap}
s.license = "MIT"
s.files = `git ls-files`.split($/).grep(%r{^(bin|lib|features)/})
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_dependency("cuke_modeler")
end