date_values-rails 0.1.0 → 0.1.1

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: 5c1bf3a457deec7273dfaa168ac05e53502775d7877d6c02159ec25639c7fdd8
4
- data.tar.gz: 7c17fd631f2035b8e68899e4d1b9ae5393e578c77db2429ad69222e8532a525f
3
+ metadata.gz: 28319635d0f7b1e9ddca5bfc17e74df6b0ad0cb308dc65cffd080b2a96c99f1f
4
+ data.tar.gz: df34b698dac23056c4c3a096b9026e6b7f53c3f7e5d1b3d0f9a50b80c43a4e5d
5
5
  SHA512:
6
- metadata.gz: 3fb2a359513982c11b69c290af20f23d1b651069474879525153387b96a97921165da07078e493f84634929ea31fec8c1c2b6eb796a13b865ffb6b4a0d52e6fb
7
- data.tar.gz: 7bfdab0ce9089d8ab4fd7d121765255c2ccc9e7cfe2eabd4ab736714fbf6714d76dbce638f4e6eecbad05abd6b77ea3244b1de72aa2957dbc3b3271d9cf8c543
6
+ metadata.gz: 90bdb664d09a2ce4d6cd69f3687e27a0ded0a7eac553070b391a6937eb2316b93a15bd6806574b7842380de4d3635b284edd9fac6e35c9857058c993197f8229
7
+ data.tar.gz: 300877d373eb661d50a4982a5eeca86a20c6dbdbb7459dd6d33a9e59ab9ce06f287c195c699d3bf893edc8f0bb70fc40846f140106f41356c88994fda78331e2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2026-03-20
4
+
5
+ - Auto-require via Bundler — no explicit `require 'date_values/rails'` needed in Rails apps
6
+
3
7
  ## [0.1.0] - 2026-03-20
4
8
 
5
9
  - Extracted from [date_values](https://github.com/ursm/date_values) gem
data/README.md CHANGED
@@ -13,8 +13,6 @@ This will also install `date_values` as a dependency.
13
13
  ## Usage
14
14
 
15
15
  ```ruby
16
- require 'date_values/rails'
17
-
18
16
  class Shop < ApplicationRecord
19
17
  attribute :billing_month, :year_month # string column "2026-03"
20
18
  attribute :anniversary, :month_day # string column "--03-19"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module DateValues
4
4
  module Rails
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
7
7
  end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'date_values/rails'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: date_values-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keita Urashima
@@ -47,6 +47,7 @@ files:
47
47
  - LICENSE.txt
48
48
  - README.md
49
49
  - Rakefile
50
+ - lib/date_values-rails.rb
50
51
  - lib/date_values/rails.rb
51
52
  - lib/date_values/rails/date_value_validator.rb
52
53
  - lib/date_values/rails/i18n_backend.rb