simple_layout 0.1.0 → 0.2.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/.gitignore +3 -0
- data/VERSION +1 -1
- data/rails_generators/simple_layout/simple_layout_generator.rb +2 -2
- data/rails_generators/simple_layout/templates/{application.css → xhtml/strict/application.css} +0 -0
- data/rails_generators/simple_layout/templates/{application.html.erb → xhtml/strict/application.html.erb} +0 -0
- metadata +4 -3
data/.gitignore
ADDED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
|
@@ -5,8 +5,8 @@ class SimpleLayoutGenerator < Rails::Generator::NamedBase
|
|
|
5
5
|
m.directory 'public/stylesheets'
|
|
6
6
|
|
|
7
7
|
if (@name.eql?("xhtml-strict"))
|
|
8
|
-
m.template
|
|
9
|
-
m.file "application.css", "public/stylesheets/application.css"
|
|
8
|
+
m.template "xhtml/strict/application.html.erb", "app/views/layouts/application.html.erb"
|
|
9
|
+
m.file "xhtml/strict/application.css", "public/stylesheets/application.css"
|
|
10
10
|
m.file "reset.css", "public/stylesheets/reset.css"
|
|
11
11
|
end
|
|
12
12
|
end
|
data/rails_generators/simple_layout/templates/{application.css → xhtml/strict/application.css}
RENAMED
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_layout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Roby
|
|
@@ -22,14 +22,15 @@ extensions: []
|
|
|
22
22
|
extra_rdoc_files:
|
|
23
23
|
- README.textile
|
|
24
24
|
files:
|
|
25
|
+
- .gitignore
|
|
25
26
|
- README.textile
|
|
26
27
|
- Rakefile
|
|
27
28
|
- VERSION
|
|
28
29
|
- lib/simple_layout.rb
|
|
29
30
|
- rails_generators/simple_layout/simple_layout_generator.rb
|
|
30
|
-
- rails_generators/simple_layout/templates/application.css
|
|
31
|
-
- rails_generators/simple_layout/templates/application.html.erb
|
|
32
31
|
- rails_generators/simple_layout/templates/reset.css
|
|
32
|
+
- rails_generators/simple_layout/templates/xhtml/strict/application.css
|
|
33
|
+
- rails_generators/simple_layout/templates/xhtml/strict/application.html.erb
|
|
33
34
|
has_rdoc: true
|
|
34
35
|
homepage: http://github.com/croby/simple_layout
|
|
35
36
|
licenses: []
|