bootstrap_form 5.2.2 → 5.2.3

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: 4f254a69bb17aa95e9b912696e17d960c76a8b276946e3e33a0c4ade55cc3a38
4
- data.tar.gz: 5d7d83dd48e78fc1dfbb9be6cea0cf12a4bdc9dbe646e3720152e4f78953adb3
3
+ metadata.gz: aa5d9dae3c70df57395c553031c50a7ef314615c1c3971d475df2490ad954673
4
+ data.tar.gz: d0ae0a83e29e3023ac4914374844c75f205ff6acffad3b24761a3a16044bf106
5
5
  SHA512:
6
- metadata.gz: 2e9d0227f8d07cd40fd0986cb67f0b86de8c759fd7e7b60d42e3ea8dd0d825555a62b5f60de26e30a8b08985cc9b38e42e765338d1ca628e50c5a8841ca64756
7
- data.tar.gz: 74034f6ad801fea16c3002242b80647eed61732c9a15c8d6b4197f59cd232c7d361974ef42697fa4b81f03100d73e7699794a0a5454da03661bde1677045ee42
6
+ metadata.gz: 4d4d49a3b0169cb307a11e838fe3723b9432417ab065e972ec6a70ec345ec9939e4277db9df3a9eeddcc23aa23eefef1082a7dc07399860c038498a965ae6481
7
+ data.tar.gz: ca23ffac8e041961259b3e04a6cadd8f37e4d9d470f823e3b4ae63f6be37221606c91618426a7025f3e06f8c36d67b80ca3d5ff40bcdd112b68971a3fe1b76d3
data/CHANGELOG.md CHANGED
@@ -6,6 +6,8 @@ https://github.com/bootstrap-ruby/bootstrap_form/releases
6
6
 
7
7
  ## Diffs
8
8
 
9
+ - [5.2.2](https://github.com/bootstrap-ruby/bootstrap_form/compare/v5.2.2...v5.2.3)
10
+ [Closed issues](https://github.com/bootstrap-ruby/bootstrap_form/issues?q=closed%3A2023-05-28T16%3A00..2023-06-18T07%3A00)
9
11
  - [5.2.2](https://github.com/bootstrap-ruby/bootstrap_form/compare/v5.2.1...v5.2.2)
10
12
  [Closed issues](https://github.com/bootstrap-ruby/bootstrap_form/issues?q=closed%3A2023-05-23T10%3A00..2023-05-28T16%3A00)
11
13
  - [5.2.1](https://github.com/bootstrap-ruby/bootstrap_form/compare/v5.2.0...v5.2.1)
data/README.md CHANGED
@@ -284,7 +284,7 @@ Or you can add the label as input placeholder instead (this automatically hides
284
284
 
285
285
  ![Example 6](demo/doc/screenshots/bootstrap/readme/06_example.png "Example 6")
286
286
  ```erb
287
- <%= f.text_field :email, label_as_placeholder: true %>
287
+ <%= f.text_field :email, value: '', label_as_placeholder: true %>
288
288
  ```
289
289
 
290
290
  This generates:
@@ -292,7 +292,7 @@ This generates:
292
292
  ```html
293
293
  <div class="mb-3">
294
294
  <label class="form-label visually-hidden required" for="user_email">Email</label>
295
- <input aria-required="true" class="form-control" id="user_email" name="user[email]" placeholder="Email" required="required" type="text" value="steve@example.com">
295
+ <input aria-required="true" class="form-control" id="user_email" name="user[email]" placeholder="Email" required="required" type="text" value="">
296
296
  </div>
297
297
  ```
298
298
 
@@ -1049,11 +1049,11 @@ This generates:
1049
1049
  ```html
1050
1050
  <form accept-charset="UTF-8" action="/users" class="new_user row row-cols-auto g-3 align-items-center" id="new_user" method="post">
1051
1051
  <div class="col">
1052
- <label class="form-label visually-hidden mr-sm-2 required" for="user_email">Email</label>
1052
+ <label class="form-label visually-hidden me-sm-2 required" for="user_email">Email</label>
1053
1053
  <input aria-required="true" class="form-control" id="user_email" name="user[email]" required="required" type="email" value="steve@example.com">
1054
1054
  </div>
1055
1055
  <div class="col">
1056
- <label class="form-label visually-hidden mr-sm-2" for="user_password">Password</label>
1056
+ <label class="form-label visually-hidden me-sm-2" for="user_password">Password</label>
1057
1057
  <input class="form-control" id="user_password" name="user[password]" type="password">
1058
1058
  </div>
1059
1059
  <div class="form-check form-check-inline mb-3">
@@ -1130,7 +1130,6 @@ This generates:
1130
1130
  </div>
1131
1131
  </div>
1132
1132
  </div>
1133
-
1134
1133
  <div class="mb-3 row">
1135
1134
  <div class="col-sm-10 offset-sm-2">
1136
1135
  <input class="btn btn-secondary" data-disable-with="Create User" name="commit" type="submit" value="Create User">
data/RELEASING.md CHANGED
@@ -10,25 +10,25 @@ Follow these steps to release a new version of bootstrap_form to rubygems.org.
10
10
 
11
11
  ## How to release
12
12
 
13
- 1. Make sure that you have all the gems necessary for testing and releasing.
13
+ 1. Determine which would be the correct next version number according to [semver](http://semver.org/).
14
+ 2. Update the version in `./lib/bootstrap_form/version.rb`.
15
+ 3. Make sure that you have all the gems necessary for testing and releasing.
14
16
 
15
17
  BUNDLE_GEMFILE=gemfiles/7.0.gemfile bundle update
16
18
 
17
- 2. **Ensure the tests are passing by running the tests**
19
+ 4. **Ensure the tests are passing by running the tests**
18
20
 
19
21
  (There should be no errors or warnings.)
20
22
 
21
23
  BUNDLE_GEMFILE=gemfiles/7.0.gemfile bundle exec rake test
22
24
 
23
- 3. **Ensure the demo tests are passing by running**
25
+ 5. **Ensure the demo tests are passing by running**
24
26
 
25
27
  cd demo
26
28
  bundle update
27
29
  bundle exec rake test:all
28
30
  cd -
29
31
 
30
- 4. Determine which would be the correct next version number according to [semver](http://semver.org/).
31
- 5. Update the version in `./lib/bootstrap_form/version.rb`.
32
32
  6. Update the GitHub diff links at the beginning of `CHANGELOG.md` (The pattern should be obvious when you look at them).
33
33
  7. Update the installation instructions in `README.md` to use the new version.
34
34
  8. Commit the CHANGELOG and version changes in a single commit; the message should be "Preparing vX.Y.Z" where `X.Y.Z` is the version being released.
@@ -34,7 +34,7 @@ module BootstrapForm
34
34
  if layout_horizontal?(group_layout)
35
35
  ["col-form-label", (custom_label_col || label_col)]
36
36
  elsif layout_inline?(group_layout)
37
- ["mr-sm-2"]
37
+ ["me-sm-2"]
38
38
  end
39
39
  end
40
40
 
@@ -1,4 +1,4 @@
1
1
  module BootstrapForm
2
- VERSION = "5.2.2".freeze
2
+ VERSION = "5.2.3".freeze
3
3
  REQUIRED_RAILS_VERSION = ">= 6.0".freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.2
4
+ version: 5.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Potenza
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-05-28 00:00:00.000000000 Z
12
+ date: 2023-06-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack