semantic_ui_views_generator 0.0.2 → 0.0.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/README.md +1 -1
- data/lib/generators/semantic/install_generator.rb +1 -1
- data/lib/semantic_ui_views_generator/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8aef27c250f83aeef65336ce524a33162486919b51d5d2d9c948c48668575c87
|
|
4
|
+
data.tar.gz: 9bcbb2b6b1497c7e8a3971be28aa1b83a475f962a183392c64c5306790bc4ee9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9f0e188a05cd75d31a492121972aba23db48e6a488e9acbc3f2e7926ac85814a5ff81ba4d72a50b52919e4ad94c1597e73c451feb22c75ca2f78bb8d239a71d
|
|
7
|
+
data.tar.gz: 78ee0446fd33e76ac0c8219a6e2cdd3303529f88dbbd2a4dc857842e9029d96d75244180f07632e854ae88ccaaad6e262c5a8a2231ddd33aab5e7b1b4e3b3b61
|
data/README.md
CHANGED
|
@@ -108,4 +108,4 @@ rails g semantic:install --template_engine=slim --simpleform
|
|
|
108
108
|
|
|
109
109
|
* If you like to use the [meta-tags](https://github.com/kpumuk/meta-tags) gem to add page titles based on the views.
|
|
110
110
|
* Pagination defaults to using [Pagy](https://github.com/ddnexus/pagy) on the index pages.
|
|
111
|
-
* With [simple_form](https://github.com/plataformatec/simple_form) it generates a `config/
|
|
111
|
+
* With [simple_form](https://github.com/plataformatec/simple_form) it generates a `config/initializers/simple_form.rb` file for your simple_form formatting.
|
|
@@ -34,7 +34,7 @@ module Semantic
|
|
|
34
34
|
|
|
35
35
|
def copy_simpleforms
|
|
36
36
|
if options[:simpleform]
|
|
37
|
-
copy_file '
|
|
37
|
+
copy_file 'initializers/simple_form.rb', 'config/initializers/simple_form.rb', force: true
|
|
38
38
|
copy_file "simple_form/_form.html.#{options[:template_engine]}", "lib/templates/#{options[:template_engine]}/scaffold/_form.html.#{options[:template_engine]}", force: true
|
|
39
39
|
end
|
|
40
40
|
end
|