This repository has been archived by the owner on Oct 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
enginex.gemspec
71 lines (66 loc) · 2.34 KB
/
enginex.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
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
66
67
68
69
70
# 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 = %q{enginex}
s.version = "0.8.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim"]
s.date = %q{2011-03-01}
s.default_executable = %q{enginex}
s.description = %q{Creates a Rails 3 engine with Rakefile, Gemfile and running tests}
s.email = %q{[email protected]}
s.executables = ["enginex"]
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
"Gemfile",
"Gemfile.lock",
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"lib/enginex.rb",
"lib/templates/gitignore",
"lib/templates/rails/application.rb",
"lib/templates/rails/boot.rb",
"lib/templates/root/%underscored%.gemspec.tt",
"lib/templates/root/Gemfile.tt",
"lib/templates/root/MIT-LICENSE.tt",
"lib/templates/root/README.rdoc.tt",
"lib/templates/root/Rakefile.tt",
"lib/templates/root/lib/%underscored%.rb.tt",
"lib/templates/spec/%underscored%_spec.rb.tt",
"lib/templates/spec/integration/navigation_spec.rb.tt",
"lib/templates/spec/spec_helper.rb",
"lib/templates/test/%underscored%_test.rb.tt",
"lib/templates/test/integration/navigation_test.rb.tt",
"lib/templates/test/support/integration_case.rb",
"lib/templates/test/test_helper.rb"
]
s.homepage = %q{http://github.com/josevalim/enginex}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Creates a Rails 3 engine with Rakefile, Gemfile and running tests}
s.test_files = [
"test/enginex_test.rb",
"test/test_helper.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_runtime_dependency(%q<thor>, ["~> 0.14"])
s.add_runtime_dependency(%q<rails>, ["~> 3.0.3"])
s.add_runtime_dependency(%q<rake>, ["~> 0.8"])
else
s.add_dependency(%q<thor>, ["~> 0.14"])
s.add_dependency(%q<rails>, ["~> 3.0.3"])
s.add_dependency(%q<rake>, ["~> 0.8"])
end
else
s.add_dependency(%q<thor>, ["~> 0.14"])
s.add_dependency(%q<rails>, ["~> 3.0.3"])
s.add_dependency(%q<rake>, ["~> 0.8"])
end
end