-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtdp.gemspec
More file actions
66 lines (61 loc) · 2.39 KB
/
Copy pathtdp.gemspec
File metadata and controls
66 lines (61 loc) · 2.39 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "tdp"
s.version = "0.0.3.beta"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Carsten Thielecke"]
s.date = "2015-02-26"
s.description = "This tool is a small DSL designed to glue together arbitrary templates and configurations to provide data specifications in a versatile and easy way.\nAs there are no limitations on what to specify with a template, neither will the usage of this tool be limited to specific domains of use.\nIt was initially intended to generate a host of XML test data specifications in a reproducible way.\nFor automation purposes the use of Rake or some similar tool is mandatory."
s.email = "carsten.thielecke@ieee.org"
s.executables = ["tdp"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = [
"LICENSE.txt",
"README.rdoc",
"Rakefile",
"bin/tdp",
"lib/tdp/application.rb",
"lib/tdp/default_loader.rb",
"lib/tdp/engine.rb",
"lib/tdp/keywords.rb",
"lib/tdp/launcher.rb",
"lib/tdp/libraries.rb",
"lib/tdp/system_functions.rb",
"lib/tdp/tdp_dsl.rb",
"lib/tdp/tdp_module.rb",
"lib/tdp/version.rb",
"tdp.gemspec",
"test/helper.rb",
"test/test_dsl.rb",
"test/test_keyword.rb"
]
s.homepage = "http://github.com/cthielecke/tdp"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9")
s.rubygems_version = "1.8.29"
s.summary = "Templated data provisioning or the poor man's Q-Up"
s.test_files = ["test/test_dsl.rb", "test/test_keyword.rb"]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
s.add_development_dependency(%q<simplecov>, [">= 0"])
s.add_runtime_dependency(%q<erubis>, [">= 2.7"])
else
s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
s.add_dependency(%q<simplecov>, [">= 0"])
s.add_dependency(%q<erubis>, [">= 2.7"])
end
else
s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
s.add_dependency(%q<simplecov>, [">= 0"])
s.add_dependency(%q<erubis>, [">= 2.7"])
end
end