openhood-sinatra_app_gen 0.0.1 → 0.1.0
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/sinatra_app_gen.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{sinatra_app_gen}
|
|
8
|
-
s.version = "0.0
|
|
8
|
+
s.version = "0.1.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jonathan Tron", "Joseph Halter"]
|
|
@@ -18,7 +18,6 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
".gitignore",
|
|
19
19
|
"Rakefile",
|
|
20
20
|
"VERSION",
|
|
21
|
-
"VERSION.yml",
|
|
22
21
|
"bin/sinatra_app",
|
|
23
22
|
"lib/generators/sinatra_app/sinatra_app_generator.rb",
|
|
24
23
|
"lib/generators/sinatra_app/templates/Rakefile.erb",
|
|
@@ -32,10 +31,11 @@ Gem::Specification.new do |s|
|
|
|
32
31
|
"lib/generators/sinatra_app/templates/spec/spec_helper.rb.erb",
|
|
33
32
|
"sinatra_app_gen.gemspec"
|
|
34
33
|
]
|
|
34
|
+
s.has_rdoc = true
|
|
35
35
|
s.homepage = %q{http://github.com/openhood/sinatra_app_gen}
|
|
36
36
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
37
37
|
s.require_paths = ["lib"]
|
|
38
|
-
s.rubygems_version = %q{1.3.
|
|
38
|
+
s.rubygems_version = %q{1.3.2}
|
|
39
39
|
s.summary = %q{Creates a new Sinatra / Sequel / rspec / cucumber app.}
|
|
40
40
|
|
|
41
41
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openhood-sinatra_app_gen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Tron
|
|
@@ -55,7 +55,6 @@ files:
|
|
|
55
55
|
- .gitignore
|
|
56
56
|
- Rakefile
|
|
57
57
|
- VERSION
|
|
58
|
-
- VERSION.yml
|
|
59
58
|
- bin/sinatra_app
|
|
60
59
|
- lib/generators/sinatra_app/sinatra_app_generator.rb
|
|
61
60
|
- lib/generators/sinatra_app/templates/Rakefile.erb
|
|
@@ -68,9 +67,8 @@ files:
|
|
|
68
67
|
- lib/generators/sinatra_app/templates/lib/rack_fix.rb.erb
|
|
69
68
|
- lib/generators/sinatra_app/templates/spec/spec_helper.rb.erb
|
|
70
69
|
- sinatra_app_gen.gemspec
|
|
71
|
-
has_rdoc:
|
|
70
|
+
has_rdoc: true
|
|
72
71
|
homepage: http://github.com/openhood/sinatra_app_gen
|
|
73
|
-
licenses:
|
|
74
72
|
post_install_message:
|
|
75
73
|
rdoc_options:
|
|
76
74
|
- --charset=UTF-8
|
|
@@ -91,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
89
|
requirements: []
|
|
92
90
|
|
|
93
91
|
rubyforge_project:
|
|
94
|
-
rubygems_version: 1.
|
|
92
|
+
rubygems_version: 1.2.0
|
|
95
93
|
signing_key:
|
|
96
94
|
specification_version: 3
|
|
97
95
|
summary: Creates a new Sinatra / Sequel / rspec / cucumber app.
|
data/VERSION.yml
DELETED