cosmit-suspenders 1.36.2 → 1.36.3
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.
- checksums.yaml +4 -4
- data/lib/suspenders/app_builder.rb +12 -0
- data/lib/suspenders/generators/app_generator.rb +2 -0
- data/lib/suspenders/version.rb +1 -1
- data/templates/_footer.html.slim +0 -0
- data/templates/_header.html.slim +0 -0
- data/templates/{suspenders_layout.html.slim.erb → suspenders_layout.html.slim} +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1e7d713bc808f4f69cf91bd35385907a058f652
|
|
4
|
+
data.tar.gz: 0d7d1d58b5824d23b934250d7d953065e26fee63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a973ba3c5e9038aaa08491f892aa021e49a334a70f14c360e7677bb735ef741629192291f3a922a971796e5384ad0c41dd48c91443e95ab13d8a9e204bf99df
|
|
7
|
+
data.tar.gz: e99cb007eca65640927c2bca461859e6b319e13d105f74d9b23c6b7a0f2a51c3e8f8c346ee09b3f40ed465569a11acf780f9fb544ce4423dbe1c2bc3064c523e
|
|
@@ -232,6 +232,18 @@ end
|
|
|
232
232
|
force: true
|
|
233
233
|
end
|
|
234
234
|
|
|
235
|
+
def create_application_header
|
|
236
|
+
template '_header.html.slim.erb',
|
|
237
|
+
'app/views/partials/_header.html.slim',
|
|
238
|
+
force: true
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
def create_application_footer
|
|
242
|
+
template '_footer.html.slim.erb',
|
|
243
|
+
'app/views/partials/_footer.html.slim',
|
|
244
|
+
force: true
|
|
245
|
+
end
|
|
246
|
+
|
|
235
247
|
def use_postgres_config_template
|
|
236
248
|
template 'postgresql_database.yml.erb', 'config/database.yml',
|
|
237
249
|
force: true
|
data/lib/suspenders/version.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cosmit-suspenders
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.36.
|
|
4
|
+
version: 1.36.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- COSMIT
|
|
@@ -141,6 +141,8 @@ files:
|
|
|
141
141
|
- templates/Procfile
|
|
142
142
|
- templates/README.md.erb
|
|
143
143
|
- templates/_flash.html.slim
|
|
144
|
+
- templates/_footer.html.slim
|
|
145
|
+
- templates/_header.html.slim
|
|
144
146
|
- templates/_javascript.html.slim
|
|
145
147
|
- templates/action_mailer.rb
|
|
146
148
|
- templates/app.json.erb
|
|
@@ -174,7 +176,7 @@ files:
|
|
|
174
176
|
- templates/spec_helper.rb
|
|
175
177
|
- templates/staging.rb
|
|
176
178
|
- templates/suspenders_gitignore
|
|
177
|
-
- templates/suspenders_layout.html.slim
|
|
179
|
+
- templates/suspenders_layout.html.slim
|
|
178
180
|
homepage: https://github.com/COSMITdev/suspenders
|
|
179
181
|
licenses:
|
|
180
182
|
- MIT
|