bulma_form_rails 0.9.8 → 0.9.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e74a9c610e874ef015101bab298a4c24c28657b7e4ca662e29f8cba9b3f3ed79
4
- data.tar.gz: 032c447cc64a171f70ea601c74d05d9f967c2740e81237165e7cde6d3b94fd3b
3
+ metadata.gz: 19477ff6e01f55d5d5318e5ddcc3ed0f0904d421bd326347179f37d0c2dff543
4
+ data.tar.gz: 60c59ce63bab58d620e8afa2bbdcde0a22e410a771667e9d5c4f80f89e019ce5
5
5
  SHA512:
6
- metadata.gz: 7c768400dcd21eccd069bd74ea957d6d185c162dd941a3d4d3c516e6d255a6bbdb2648a769779245838507183cb4f2f41782c43da5cb56752855d18fd862f484
7
- data.tar.gz: 0a8b1ed069d3a392434c2586999219b381ccce032d781f12be3cc79c7eab767d2148074115110f87e4f61738a9385379885a40596a5a9e4df7e7d10dd9b3b160
6
+ metadata.gz: de1e24d417bd4eefc62d3138bc3c7a2ae00d379b25e0b0f720798f3a3afad928ad6eec1387dc0e232963c730b2654f4a9972752884f32fff31bb33b4d35e634a
7
+ data.tar.gz: 60676dca8ea7aab027b3c05e0677f5b3deec88fbe09d7de2f1c3f95c1e4dc60205dc9a2f6836614743c5b10f0021aca24d312a4b54377340cc847730360ee33d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bulma_form_rails (0.9.8)
4
+ bulma_form_rails (0.9.9)
5
5
  pagy (~> 5.10)
6
6
  rails (~> 7.0.4)
7
7
  rake (~> 13.0.6)
data/README.md CHANGED
@@ -33,21 +33,25 @@ https://moderngeosystems.com
33
33
  * `bulma_edit_form_page`
34
34
 
35
35
  ## Prerequisites
36
+ ### Installing Bulma
36
37
  You should have generated your application using something similar to the following command:
37
38
  ```bash
38
39
  $ rails new -c bulma app_name
39
40
  ```
40
- Or for an existing application, you should install Bulma as the Rails application generator would have. Something like this might be enough:
41
+ Or for an existing application, you should install Bulma as the Rails application generator would have:
41
42
  ```bash
42
43
  $ bundle add cssbundling-rails
43
44
  $ bin/rails css:install:bulma
44
45
  ```
45
- If you were using importmaps in an existing application, you may need to remove these lines from `app/assets/config/manifest.js`:
46
+ #### If you were using importmaps in an existing application
47
+ You may need to remove these lines from `app/assets/config/manifest.js`:
46
48
  ```javascript
47
49
  -//= link_tree ../../javascript .js
48
50
  -//= link_tree ../../../vendor/javascript .js
49
51
  ```
50
- You will also need to install the Pagy gem:
52
+ and you may need to replace `<%= javascript_importmap_tags %>` with `<%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>` in `app.views/layouts/application.html.erb`.
53
+ ### Installing Pagy
54
+ You will need to install the Pagy gem if you haven't already done so:
51
55
  ```bash
52
56
  $ bundle add pagy
53
57
  ```
@@ -1,3 +1,3 @@
1
1
  module BulmaFormRails
2
- VERSION = '0.9.8'
2
+ VERSION = '0.9.9'
3
3
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modgeosys/bulma_form_rails",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "description": "Stimulus controllers for BulmaFormRails Gem",
5
5
  "module": "lib/javascript/controllers/index.js",
6
6
  "main": "lib/javascript/controllers/index.js",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma_form_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Weller