simple-layout 0.3.1 → 0.4.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/README.rdoc +3 -2
- data/VERSION +1 -1
- data/simple-layout.gemspec +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
|
@@ -7,11 +7,12 @@ In your Gemfile:
|
|
|
7
7
|
nd
|
|
8
8
|
|
|
9
9
|
From console:
|
|
10
|
-
$rails g layout simple
|
|
10
|
+
$rails g layout simple # To generate simple layout
|
|
11
|
+
$rails destroy layout simple # To remove files related to simple layout
|
|
11
12
|
|
|
12
13
|
In your controller:
|
|
13
14
|
class PostsContorller < ApplicationController
|
|
14
|
-
layout
|
|
15
|
+
layout 'simple'
|
|
15
16
|
...
|
|
16
17
|
end
|
|
17
18
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.4.0
|
data/simple-layout.gemspec
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: simple-layout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.
|
|
5
|
+
version: 0.4.0
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Allen Kim
|
|
@@ -111,7 +111,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
111
111
|
requirements:
|
|
112
112
|
- - ">="
|
|
113
113
|
- !ruby/object:Gem::Version
|
|
114
|
-
hash:
|
|
114
|
+
hash: 3908898591820442035
|
|
115
115
|
segments:
|
|
116
116
|
- 0
|
|
117
117
|
version: "0"
|