bulma_form_rails 0.9.7 → 0.9.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6cd78deabfe8252c52991bd35ffb161fa19f4bcc520df4dcafc06cf7bf999bc6
4
- data.tar.gz: 9b0a8435c1e1cb914a3591ff049116b2ce3dc5426bfa76993428e9af782956f4
3
+ metadata.gz: e74a9c610e874ef015101bab298a4c24c28657b7e4ca662e29f8cba9b3f3ed79
4
+ data.tar.gz: 032c447cc64a171f70ea601c74d05d9f967c2740e81237165e7cde6d3b94fd3b
5
5
  SHA512:
6
- metadata.gz: a2e437e5d1a60e41333197908afb77e97a66261db6f432ed255ad2eaceeb42e9fbf716e1505baddc25934ff89624175f2b1782357102ac537802bc6adce934b0
7
- data.tar.gz: 486b4bbaaedac8d58d47d71d3d149719ded6acb208c6a8e0ddd6216b85aeaf25ae3d8a812c5c0958053676084bf6608be9ed43e339e58e9a27312ff951328ea7
6
+ metadata.gz: 7c768400dcd21eccd069bd74ea957d6d185c162dd941a3d4d3c516e6d255a6bbdb2648a769779245838507183cb4f2f41782c43da5cb56752855d18fd862f484
7
+ data.tar.gz: 0a8b1ed069d3a392434c2586999219b381ccce032d781f12be3cc79c7eab767d2148074115110f87e4f61738a9385379885a40596a5a9e4df7e7d10dd9b3b160
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bulma_form_rails (0.9.7)
4
+ bulma_form_rails (0.9.8)
5
5
  pagy (~> 5.10)
6
6
  rails (~> 7.0.4)
7
7
  rake (~> 13.0.6)
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.
@@ -1,3 +1,3 @@
1
1
  module BulmaFormRails
2
- VERSION = '0.9.7'
2
+ VERSION = '0.9.8'
3
3
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modgeosys/bulma_form_rails",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
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.7
4
+ version: 0.9.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Weller