concerns_on_rails 1.14.0 → 1.14.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 +4 -4
- data/CHANGELOG.md +11 -0
- data/lib/concerns_on_rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0cbda4a7f45769f7997d0f5367d04a594946bee53e45e759a461bb73a535522e
|
|
4
|
+
data.tar.gz: 692b5092f4b784a113dd09935eda88fc16bd1f0a484f349ae53c77f8b945b14d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 215b94501afdbb59bfed5633eaa649efb244e2c9a01e21ac30a63ea1bf4de0ffa9f5b2c71da92d5fd980f90cc7d8ef397f17fa0c708d16be31059f7d29facf91
|
|
7
|
+
data.tar.gz: 3778aa7588aef6315a40707fdfd1d01b2092d65fb4b5717a16a4ac4f81300f23086aa4a3f0133d86a84d84acbb9b210a7ee45f23d2806e6c9d8ade8797238733
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
<!-- CHANGELOG.md -->
|
|
2
2
|
|
|
3
|
+
## 1.14.1 (2026-06-07)
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **gemspec**: `source_code_uri` now points to the GitHub repository (`https://github.com/VSN2015/concerns_on_rails`) instead of the documentation site, so RubyGems' "Source Code" link resolves to the actual source again (it had been set to the Pages homepage in 1.14.0).
|
|
7
|
+
|
|
8
|
+
### Docs
|
|
9
|
+
- Added a GitHub Pages documentation site covering all 29 concerns (model + controller) — per-concern pages, search, and copyable examples.
|
|
10
|
+
- SPA: shared/deep links to in-page section anchors (e.g. `#api`, `#features`) now render the page instead of hanging on the loading placeholder.
|
|
11
|
+
- Landing page: corrected the `SoftDeletable` example to `#soft_delete!` / `#restore!` (instance `destroy` is a hard delete — only the class `destroy_all` soft-deletes), and replaced a non-existent `respond_*` reference with the real `render_success` / `render_error` helpers.
|
|
12
|
+
- Fixed two `Includable` doc examples that used an invalid controller constructor; added Open Graph / Twitter Card metadata for link previews.
|
|
13
|
+
|
|
3
14
|
## 1.14.0 (2026-06-06)
|
|
4
15
|
|
|
5
16
|
### Added
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: concerns_on_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.14.
|
|
4
|
+
version: 1.14.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ethan Nguyen
|
|
@@ -108,13 +108,13 @@ files:
|
|
|
108
108
|
- lib/concerns_on_rails/support/random_value.rb
|
|
109
109
|
- lib/concerns_on_rails/support/sequence_calculator.rb
|
|
110
110
|
- lib/concerns_on_rails/version.rb
|
|
111
|
-
homepage: https://github.
|
|
111
|
+
homepage: https://vsn2015.github.io/concerns_on_rails
|
|
112
112
|
licenses:
|
|
113
113
|
- MIT
|
|
114
114
|
metadata:
|
|
115
|
-
homepage_uri: https://github.
|
|
115
|
+
homepage_uri: https://vsn2015.github.io/concerns_on_rails
|
|
116
116
|
source_code_uri: https://github.com/VSN2015/concerns_on_rails
|
|
117
|
-
changelog_uri: https://github.com/VSN2015/concerns_on_rails/CHANGELOG.md
|
|
117
|
+
changelog_uri: https://github.com/VSN2015/concerns_on_rails/blob/master/CHANGELOG.md
|
|
118
118
|
post_install_message:
|
|
119
119
|
rdoc_options: []
|
|
120
120
|
require_paths:
|