validation_hints 7.13.3 → 7.13.11
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 +4 -4
- data/CHANGELOG.md +30 -0
- data/Gemfile.lock +2 -2
- data/Rakefile +9 -1
- data/lib/validation_hints/version.rb +1 -1
- data/test/validation_hints_test.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 98fe6f49e742c68dd98d3d1c180aa52130480be80668b9c3a8e1b374c70a18e5
|
|
4
|
+
data.tar.gz: 3d0e854ab772ceb1700cb1ae0700f80afe76db62edbefd2a102ae3f703130568
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 007e8205f47529900689b2412576243f85725eec87306bf495fd05f69eab38d9473f5994527127d73e9da5a755aed2b8193b4995d27130349bb4af4189016f35
|
|
7
|
+
data.tar.gz: 5f6838dd4017b74bb51cc0ec0e330f892d56af7c36d2bc5e960ff936bfe167822cab52638d82cd855677ee727f705d4cc0012f3c7bb71f27aadb40a8e1cb9df6
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project are documented here.
|
|
4
4
|
|
|
5
|
+
## Unreleased
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **`Rakefile`:** `bundler/setup` is no longer loaded for `rake release` (fixes `Could not find sqlite3-…` when dev bundle was not installed). `rake test` runs `bundle install` if needed, then loads the bundle.
|
|
10
|
+
|
|
11
|
+
## 7.13.11
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- **Version numbering:** aligned with **inline_forms** / **inline_forms_installer** **7.13.11** (companion release; no API changes).
|
|
16
|
+
|
|
17
|
+
## 7.13.10
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **Version numbering:** aligned with **inline_forms** / **inline_forms_installer** **7.13.10** (companion release; no API changes). Generated apps now pin `validation_hints '~> 7'` alongside `inline_forms '~> 7'`.
|
|
22
|
+
|
|
23
|
+
## 7.13.9
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- **Version numbering:** aligned with **inline_forms** / **inline_forms_installer** **7.13.9** (companion release; no API changes in this gem). Catches up lockstep numbering after **7.13.4** while **inline_forms** / **inline_forms_installer** shipped **7.13.5**–**7.13.8**.
|
|
28
|
+
|
|
29
|
+
## 7.13.4
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- **Version numbering:** aligned with **inline_forms** / **inline_forms_installer** **7.13.4** (companion release; no API changes in this gem). Pairs with the inline_forms rich_text-create Restore symmetry fix.
|
|
34
|
+
|
|
5
35
|
## 7.13.3
|
|
6
36
|
|
|
7
37
|
### Changed
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
validation_hints (7.13.
|
|
4
|
+
validation_hints (7.13.4)
|
|
5
5
|
activerecord (>= 7.2.3.1, < 7.3)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -95,7 +95,7 @@ CHECKSUMS
|
|
|
95
95
|
sqlite3 (1.7.3-x86_64-linux) sha256=522a3285660dec8253465880c97980e873db0d79060900be8d14194217a3ee73
|
|
96
96
|
timeout (0.6.1) sha256=78f57368a7e7bbadec56971f78a3f5ecbcfb59b7fcbb0a3ed6ddc08a5094accb
|
|
97
97
|
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
|
98
|
-
validation_hints (7.13.
|
|
98
|
+
validation_hints (7.13.4)
|
|
99
99
|
|
|
100
100
|
BUNDLED WITH
|
|
101
101
|
4.0.11
|
data/Rakefile
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "bundler/setup"
|
|
4
3
|
require "bundler/gem_helper"
|
|
5
4
|
require "rake/testtask"
|
|
6
5
|
|
|
6
|
+
# Do not require "bundler/setup" at load time: `rake release` only builds and
|
|
7
|
+
# pushes the .gem (no tests, no sqlite3). Tests load the bundle explicitly.
|
|
7
8
|
Bundler::GemHelper.install_tasks
|
|
8
9
|
|
|
9
10
|
Rake::TestTask.new(:test) do |t|
|
|
@@ -12,4 +13,11 @@ Rake::TestTask.new(:test) do |t|
|
|
|
12
13
|
t.pattern = "test/**/*_test.rb"
|
|
13
14
|
end
|
|
14
15
|
|
|
16
|
+
task "test:bundle" do
|
|
17
|
+
sh "bundle check > /dev/null 2>&1 || bundle install"
|
|
18
|
+
require "bundler/setup"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
Rake::Task[:test].enhance(["test:bundle"])
|
|
22
|
+
|
|
15
23
|
task default: :test
|