template 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/{skeleton → generators/skeleton}/USAGE +0 -0
- data/lib/{skeleton → generators/skeleton}/skeleton_generator.rb +0 -0
- data/lib/{skeleton → generators/skeleton}/templates/Gemfile +0 -0
- data/lib/{skeleton → generators/skeleton}/templates/app/controllers/welcome_controller.rb +0 -0
- data/lib/{skeleton → generators/skeleton}/templates/app/views/layouts/application.html.erb +0 -0
- data/lib/{skeleton → generators/skeleton}/templates/app/views/welcome/index.html.erb +0 -0
- data/lib/{skeleton → generators/skeleton}/templates/config/database.yml +0 -0
- data/lib/{skeleton → generators/skeleton}/templates/public/stylesheets/.gitkeep +0 -0
- data/lib/{skeleton → generators/skeleton}/templates/public/stylesheets/screen.css +0 -0
- data/template.gemspec +10 -10
- metadata +12 -12
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.2.0
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/template.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{template}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.2.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Yule"]
|
@@ -24,15 +24,15 @@ Gem::Specification.new do |s|
|
|
24
24
|
"README.rdoc",
|
25
25
|
"Rakefile",
|
26
26
|
"VERSION",
|
27
|
-
"lib/skeleton/USAGE",
|
28
|
-
"lib/skeleton/skeleton_generator.rb",
|
29
|
-
"lib/skeleton/templates/Gemfile",
|
30
|
-
"lib/skeleton/templates/app/controllers/welcome_controller.rb",
|
31
|
-
"lib/skeleton/templates/app/views/layouts/application.html.erb",
|
32
|
-
"lib/skeleton/templates/app/views/welcome/index.html.erb",
|
33
|
-
"lib/skeleton/templates/config/database.yml",
|
34
|
-
"lib/skeleton/templates/public/stylesheets/.gitkeep",
|
35
|
-
"lib/skeleton/templates/public/stylesheets/screen.css",
|
27
|
+
"lib/generators/skeleton/USAGE",
|
28
|
+
"lib/generators/skeleton/skeleton_generator.rb",
|
29
|
+
"lib/generators/skeleton/templates/Gemfile",
|
30
|
+
"lib/generators/skeleton/templates/app/controllers/welcome_controller.rb",
|
31
|
+
"lib/generators/skeleton/templates/app/views/layouts/application.html.erb",
|
32
|
+
"lib/generators/skeleton/templates/app/views/welcome/index.html.erb",
|
33
|
+
"lib/generators/skeleton/templates/config/database.yml",
|
34
|
+
"lib/generators/skeleton/templates/public/stylesheets/.gitkeep",
|
35
|
+
"lib/generators/skeleton/templates/public/stylesheets/screen.css",
|
36
36
|
"lib/template.rb",
|
37
37
|
"template.gemspec",
|
38
38
|
"test/helper.rb",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: template
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 2
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.2.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Yule
|
@@ -95,15 +95,15 @@ files:
|
|
95
95
|
- README.rdoc
|
96
96
|
- Rakefile
|
97
97
|
- VERSION
|
98
|
-
- lib/skeleton/USAGE
|
99
|
-
- lib/skeleton/skeleton_generator.rb
|
100
|
-
- lib/skeleton/templates/Gemfile
|
101
|
-
- lib/skeleton/templates/app/controllers/welcome_controller.rb
|
102
|
-
- lib/skeleton/templates/app/views/layouts/application.html.erb
|
103
|
-
- lib/skeleton/templates/app/views/welcome/index.html.erb
|
104
|
-
- lib/skeleton/templates/config/database.yml
|
105
|
-
- lib/skeleton/templates/public/stylesheets/.gitkeep
|
106
|
-
- lib/skeleton/templates/public/stylesheets/screen.css
|
98
|
+
- lib/generators/skeleton/USAGE
|
99
|
+
- lib/generators/skeleton/skeleton_generator.rb
|
100
|
+
- lib/generators/skeleton/templates/Gemfile
|
101
|
+
- lib/generators/skeleton/templates/app/controllers/welcome_controller.rb
|
102
|
+
- lib/generators/skeleton/templates/app/views/layouts/application.html.erb
|
103
|
+
- lib/generators/skeleton/templates/app/views/welcome/index.html.erb
|
104
|
+
- lib/generators/skeleton/templates/config/database.yml
|
105
|
+
- lib/generators/skeleton/templates/public/stylesheets/.gitkeep
|
106
|
+
- lib/generators/skeleton/templates/public/stylesheets/screen.css
|
107
107
|
- lib/template.rb
|
108
108
|
- template.gemspec
|
109
109
|
- test/helper.rb
|