rails_map 1.3.0 → 1.3.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 +13 -0
- data/README.md +1 -1
- data/lib/rails_map/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65164109e177e442292f7416640252cc1b78cc11554018ae105948c90a90dd4f
|
|
4
|
+
data.tar.gz: 8ec234b4d5ea8274cfc62675248c0aff0a6e04bbbc3844fae185e6f66075bca8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 710d9dbb94052a4b2e4cf3fb92589f100a3900e37b506090cc6ac17406ab47084370b237470e38300dcae56368ff3c4d167446da9600297029f037ba22935696
|
|
7
|
+
data.tar.gz: 0b5c34d3056c765aeb1d15ab5dbee9a9e3f631bbf6a350abdb5b878d10a0fb8f242e75989dd2fd5dcb9c49a75164e92b5939dd28d830ad39def5c10bcffacce6
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.3.1] - 2026-02-13
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **BREAKING:** Default static output directory changed from `doc/api` to `doc/rails-map`
|
|
13
|
+
- Rails dependency expanded to support Rails 8.x (`>= 5.0, < 9.0`)
|
|
14
|
+
- Static controller template now shows "Parameters" column (synced with live view)
|
|
15
|
+
- Replaced deprecated `require_dependency` with `require` for Rails 7+ compatibility
|
|
16
|
+
- Migration template now uses dynamic version (`ActiveRecord::Migration.current_version`)
|
|
17
|
+
- Added `module_parent_name` fallback for Rails 5.x compatibility
|
|
18
|
+
- Removed unused `Rails::Generators::Migration` include from install generator
|
|
19
|
+
- Fixed stale `RailsDocGenerator` branding in static layout footer
|
|
20
|
+
|
|
8
21
|
## [1.2.0] - 2026-02-12
|
|
9
22
|
|
|
10
23
|
### Added
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/rails_map)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
[](https://www.ruby-lang.org)
|
|
7
|
-
[](https://rubyonrails.org)
|
|
7
|
+
[](https://rubyonrails.org)
|
|
8
8
|
|
|
9
9
|
🌐 **[Homepage](https://rails-map.netlify.app)** | 📦 **[RubyGems](https://rubygems.org/gems/rails_map)** | 🐙 **[GitHub](https://github.com/ArshdeepGrover/rails-map)**
|
|
10
10
|
|
data/lib/rails_map/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_map
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arshdeep Singh
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '5.0'
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '
|
|
22
|
+
version: '9.0'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '5.0'
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
32
|
+
version: '9.0'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: bundler
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|