shoelace-rails 0.7.0 → 0.8.0

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: 43e6f607b577eb1c8619ca818ad1e1ad29077d948789579a109a740273b1ba6e
4
- data.tar.gz: 266799cb74342d48ac0fb97e9fd9a902c84fe5dfc468c5f5fdf7c8ec98872759
3
+ metadata.gz: 20839327945ff1a818a65750abc6e0619f7d26c83a20bbf1abb231f2365370dd
4
+ data.tar.gz: 012f80aa8ebed0ba9ddb66d66dd1341fbf3cd4caf5772abc4bc6a8a0e4e32cec
5
5
  SHA512:
6
- metadata.gz: e11ac8b6752b1c8cb9303b972008f088e57e56dfb022c36d6ff4ae5784102df6a0afc1143101fc497c1926ff6f494608d13738759347c9f767676c6fc76c0589
7
- data.tar.gz: 6c8f7506829f93b98e673701cf290e5f116a8f283f5abb42c2507f94c248b12223795e7670530dadd1d812e5f3999fa7bccc212f8c85a69a0b3da8a32231e542
6
+ metadata.gz: abb41180955a96091b7bb6018a8e3ace497f4105cc94cfbfd79476780ef6dcc8a60a85d889dd96fad4b2f2aace1c278f90fa824064e760aabf120b9d1c4435b2
7
+ data.tar.gz: fa571f278d69a6451705c87ff2d388466ef037eb57f77afc443d07121c3937daa1545b823a006437f1f003b2a2a2ae6e7433b1aab42322436498933d9aae1c1e
data/Appraisals CHANGED
@@ -6,6 +6,12 @@ appraise "rails_edge" do
6
6
  end
7
7
  end
8
8
 
9
+ appraise "rails_72" do
10
+ gem "rails", "~> 7.2.0"
11
+ gem "railties", "~> 7.2.0"
12
+ gem "activesupport", "~> 7.2.0"
13
+ end
14
+
9
15
  appraise "rails_71" do
10
16
  gem "rails", "~> 7.1.0"
11
17
  gem "railties", "~> 7.1.0"
data/CHANGELOG.md CHANGED
@@ -1,20 +1,34 @@
1
- ## Unreleased
1
+ ## v0.8.0
2
+
3
+ #### ⭐️ Features
4
+
5
+ - Add support for Rails 7.1 (5f934f10660dd79a5317205536edf7d18df2bb97)
6
+
7
+ ## [v0.7.0](https://github.com/yuki24/shoelace-rails/tree/v0.7.0)
8
+
9
+ _<sup>released at 2024-08-01 04:47:41 UTC</sup>_
2
10
 
3
11
  #### 🚨 Breaking Changes
4
12
 
5
- - Deprecate `config.shoelace.invalid_input_class_name` in favor of `data-invalid` and `data-use-invalid`
13
+ - Deprecate `config.shoelace.invalid_input_class_name` in favor of `data-invalid` and `data-use-invalid` ([<tt>461b622</tt>](https://github.com/yuki24/shoelace-rails/commit/461b6229a3b1917fab6db49ddc9f10003b8a54f9))
6
14
 
7
15
  #### ⭐️ Features
8
16
 
9
- - Add `invalid` and `data-invalid` to the `Shoelace::FormBuilder`
10
- - Add the ability to specify a method for rendering slot for input components
11
- - Add `FormBuilder#date_field` method
17
+ - Add `invalid` and `data-invalid` to the `Shoelace::FormBuilder` ([<tt>461b622</tt>](https://github.com/yuki24/shoelace-rails/commit/461b6229a3b1917fab6db49ddc9f10003b8a54f9))
18
+ - Add the ability to specify a method for rendering slot for input components ([<tt>6b8b2d3</tt>](https://github.com/yuki24/shoelace-rails/commit/6b8b2d3537bea4fc779b25183be6b8b4ad6b8365))
19
+ - Add `FormBuilder#date_field` method ([<tt>73b92be</tt>](https://github.com/yuki24/shoelace-rails/commit/73b92becbf44bc277202e4085201c035fed430bb))
20
+
21
+ #### 🐞 Bug Fixes
22
+
23
+ - Fixes a bug where `FormBuilder#select` blows up with an empty block ([<tt>f0addb2</tt>](https://github.com/yuki24/shoelace-rails/commit/f0addb2315f03daa0a11a9c4227e427c0666cd3f))
24
+
25
+ ## [v0.6.2](https://github.com/yuki24/shoelace-rails/tree/v0.6.2)
12
26
 
13
- ## v0.6.2
27
+ _<sup>released at 2024-08-01 04:38:17 UTC</sup>_
14
28
 
15
29
  #### 🐞Bug Fixes
16
30
 
17
- - Fixes a bug where form builders fail to render when it falls back to humanize the given method name
31
+ - Fixes a bug where form builders fail to render when it falls back to humanize the given method name ([<tt>74b646e</tt>](https://github.com/yuki24/shoelace-rails/commit/74b646e3fa96768680dd1fda314b8367f98ee69a))
18
32
 
19
33
  ## [v0.6.1](https://github.com/yuki24/shoelace-rails/tree/v0.6.1)
20
34
 
@@ -22,7 +36,7 @@ _<sup>released at 2024-03-13 03:05:20 UTC</sup>_
22
36
 
23
37
  #### 🐞Bug Fixes
24
38
 
25
- - Fixes a bug where form builders fail to render with a string `:as` option
39
+ - Fixes a bug where form builders fail to render with a string `:as` option ([<tt>d631025</tt>](https://github.com/yuki24/shoelace-rails/commit/d63102559fdcaaa79c01a210769667cac77b197d))
26
40
 
27
41
  ## [v0.6.0](https://github.com/yuki24/shoelace-rails/tree/v0.6.0)
28
42
 
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rake", "~> 13.0"
6
+ gem "rails", "~> 7.2.0"
7
+ gem "railties", "~> 7.2.0"
8
+ gem "activesupport", "~> 7.2.0"
9
+
10
+ gemspec path: "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Shoelace
4
4
  module Rails
5
- VERSION = "0.7.0"
5
+ VERSION = "0.8.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shoelace-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuki Nishijima
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-01 00:00:00.000000000 Z
11
+ date: 2024-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionview
@@ -120,6 +120,7 @@ files:
120
120
  - gemfiles/rails_61.gemfile
121
121
  - gemfiles/rails_70.gemfile
122
122
  - gemfiles/rails_71.gemfile
123
+ - gemfiles/rails_72.gemfile
123
124
  - gemfiles/rails_edge.gemfile
124
125
  - lib/shoelace/engine.rb
125
126
  - lib/shoelace/rails.rb