decoct 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/decoct.gemspec +71 -0
- data/lib/templates/spec/spec_helper.rb +1 -1
- data/pkg/decoct-0.1.0.gem +0 -0
- metadata +4 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/decoct.gemspec
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{decoct}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Anuj Dutta"]
|
|
12
|
+
s.date = %q{2009-11-26}
|
|
13
|
+
s.default_executable = %q{decoct}
|
|
14
|
+
s.description = %q{Sinatra Rspec project generator}
|
|
15
|
+
s.email = %q{anuj@andhapp.com}
|
|
16
|
+
s.executables = ["decoct"]
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"README.markdown"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
"README.markdown",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION",
|
|
24
|
+
"bin/decoct",
|
|
25
|
+
"decoct.gemspec",
|
|
26
|
+
"lib/decoct.rb",
|
|
27
|
+
"lib/decoct/dconstants.rb",
|
|
28
|
+
"lib/decoct/dmeta.rb",
|
|
29
|
+
"lib/decoct/dscript.rb",
|
|
30
|
+
"lib/templates/.autotest",
|
|
31
|
+
"lib/templates/generic_app.rb",
|
|
32
|
+
"lib/templates/spec/app_spec.rb",
|
|
33
|
+
"lib/templates/spec/rcov.opts",
|
|
34
|
+
"lib/templates/spec/spec.opts",
|
|
35
|
+
"lib/templates/spec/spec_helper.rb",
|
|
36
|
+
"pkg/decoct-0.1.0.gem",
|
|
37
|
+
"test/decoct/ts_script.rb",
|
|
38
|
+
"test/test_helper.rb"
|
|
39
|
+
]
|
|
40
|
+
s.homepage = %q{http://github.com/andhapp/decoct}
|
|
41
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
42
|
+
s.require_paths = ["lib"]
|
|
43
|
+
s.rubygems_version = %q{1.3.5}
|
|
44
|
+
s.summary = %q{Its a simple gem which creates a project structure for sinatra to work with rspec, ZenTest, RedGreen, Rcov}
|
|
45
|
+
s.test_files = [
|
|
46
|
+
"test/decoct/ts_script.rb",
|
|
47
|
+
"test/test_helper.rb"
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
if s.respond_to? :specification_version then
|
|
51
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
52
|
+
s.specification_version = 3
|
|
53
|
+
|
|
54
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
55
|
+
s.add_runtime_dependency(%q<rspec>, [">= 0"])
|
|
56
|
+
s.add_runtime_dependency(%q<ZenTest>, [">= 0"])
|
|
57
|
+
s.add_runtime_dependency(%q<redgreen>, [">= 0"])
|
|
58
|
+
s.add_runtime_dependency(%q<rcov>, [">= 0"])
|
|
59
|
+
else
|
|
60
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
61
|
+
s.add_dependency(%q<ZenTest>, [">= 0"])
|
|
62
|
+
s.add_dependency(%q<redgreen>, [">= 0"])
|
|
63
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
64
|
+
end
|
|
65
|
+
else
|
|
66
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
67
|
+
s.add_dependency(%q<ZenTest>, [">= 0"])
|
|
68
|
+
s.add_dependency(%q<redgreen>, [">= 0"])
|
|
69
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
70
|
+
end
|
|
71
|
+
end
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decoct
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anuj Dutta
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-11-
|
|
12
|
+
date: 2009-11-26 00:00:00 +05:30
|
|
13
13
|
default_executable: decoct
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -65,6 +65,7 @@ files:
|
|
|
65
65
|
- Rakefile
|
|
66
66
|
- VERSION
|
|
67
67
|
- bin/decoct
|
|
68
|
+
- decoct.gemspec
|
|
68
69
|
- lib/decoct.rb
|
|
69
70
|
- lib/decoct/dconstants.rb
|
|
70
71
|
- lib/decoct/dmeta.rb
|
|
@@ -75,6 +76,7 @@ files:
|
|
|
75
76
|
- lib/templates/spec/rcov.opts
|
|
76
77
|
- lib/templates/spec/spec.opts
|
|
77
78
|
- lib/templates/spec/spec_helper.rb
|
|
79
|
+
- pkg/decoct-0.1.0.gem
|
|
78
80
|
- test/decoct/ts_script.rb
|
|
79
81
|
- test/test_helper.rb
|
|
80
82
|
has_rdoc: true
|