bulma_form_rails 0.9.7 → 0.9.8
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/Gemfile.lock +1 -1
- data/README.md +6 -0
- data/lib/bulma_form_rails/version.rb +1 -1
- data/package.json +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: e74a9c610e874ef015101bab298a4c24c28657b7e4ca662e29f8cba9b3f3ed79
|
|
4
|
+
data.tar.gz: 032c447cc64a171f70ea601c74d05d9f967c2740e81237165e7cde6d3b94fd3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c768400dcd21eccd069bd74ea957d6d185c162dd941a3d4d3c516e6d255a6bbdb2648a769779245838507183cb4f2f41782c43da5cb56752855d18fd862f484
|
|
7
|
+
data.tar.gz: 0a8b1ed069d3a392434c2586999219b381ccce032d781f12be3cc79c7eab767d2148074115110f87e4f61738a9385379885a40596a5a9e4df7e7d10dd9b3b160
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -42,6 +42,11 @@ Or for an existing application, you should install Bulma as the Rails applicatio
|
|
|
42
42
|
$ bundle add cssbundling-rails
|
|
43
43
|
$ bin/rails css:install:bulma
|
|
44
44
|
```
|
|
45
|
+
If you were using importmaps in an existing application, you may need to remove these lines from `app/assets/config/manifest.js`:
|
|
46
|
+
```javascript
|
|
47
|
+
-//= link_tree ../../javascript .js
|
|
48
|
+
-//= link_tree ../../../vendor/javascript .js
|
|
49
|
+
```
|
|
45
50
|
You will also need to install the Pagy gem:
|
|
46
51
|
```bash
|
|
47
52
|
$ bundle add pagy
|
|
@@ -60,6 +65,7 @@ Continue your installation by executing:
|
|
|
60
65
|
$ bin/rails bulma_form_rails:install
|
|
61
66
|
$ bin/rails generate bulma_form_rails:pagy_config
|
|
62
67
|
$ bin/rails generate bulma_form_rails:views
|
|
68
|
+
$ bin/rails assets:precompile
|
|
63
69
|
```
|
|
64
70
|
`rails bulma_form_rails:install` will add required resources to your application.
|
|
65
71
|
The Rails generators will create your initial implementation view and configuration templates. If you modify the generated files, you might not want to to run these generators again.
|
data/package.json
CHANGED