validation_hints 7.13.4 → 7.13.12

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: 6c2a974ffdcde4fed281b345ea6547daa0399c5c36267da0c8e7a54d36c6de7e
4
- data.tar.gz: 0b80e05449e0f3a381cdaeb759e05a741b9035c6c1cd35e1163c159cde15e0fc
3
+ metadata.gz: 66df5c872a7ca002b786b62f98927fadd19b303cef59db3b724033165ebee900
4
+ data.tar.gz: 898e0f7188f3eb463a47695dbc1a1cd3e97cfae8e2b5fe6706b185ccd1bf23ac
5
5
  SHA512:
6
- metadata.gz: d5a3d4eb968da9a55493cdd053e3cf9461f53b77c82e44e159787359fcbbd03717744d653851490a59a873bc1ab82be7f7a6113cd79923aff845ffe4a2c878cc
7
- data.tar.gz: 63adafb13dab035d4ff113c7eeba03e8c2be40db7bcae5e9084f4c673d039c47099410fb34f731716714a991a76f6c05d787c84cf25a77e8fe549e6556b1d888
6
+ metadata.gz: 814bbdcb1ee8fff6d2bea8bf1d89d0d48d2f4934b0a423e1cf3da9456978d2a18830752a4b2271a83bc4c06ba4443c1545ce3b0d650e56053e503ce3404c935b
7
+ data.tar.gz: 61b9b1318d7d75b6527621775a74709835fe3394901d5cb77718a2875fc5b4d1d2c5a924348f3f2cee13a3abd0ab778e8a54bd66641681d2ec1b29fe10a4da38
data/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  All notable changes to this project are documented here.
4
4
 
5
+ ## 7.13.12
6
+
7
+ ### Changed
8
+
9
+ - **Version numbering:** aligned with **inline_forms** / **inline_forms_installer** **7.13.12** (companion release).
10
+ - **`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.
11
+
12
+ ## 7.13.11
13
+
14
+ ### Changed
15
+
16
+ - **Version numbering:** aligned with **inline_forms** / **inline_forms_installer** **7.13.11** (companion release; no API changes).
17
+
18
+ ## 7.13.10
19
+
20
+ ### Changed
21
+
22
+ - **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'`.
23
+
24
+ ## 7.13.9
25
+
26
+ ### Changed
27
+
28
+ - **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**.
29
+
5
30
  ## 7.13.4
6
31
 
7
32
  ### Changed
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
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module ValidationHints
3
- VERSION = "7.13.4"
3
+ VERSION = "7.13.12"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validation_hints
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.13.4
4
+ version: 7.13.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ace Suares