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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a917f534a942aae52659013098e9a87a86092ca89c78c0759698282bc79d4793
4
- data.tar.gz: be81c66e4763e7684840e2b4231d18123d32949c42a05f22ab7a3f44f082c25b
3
+ metadata.gz: 65164109e177e442292f7416640252cc1b78cc11554018ae105948c90a90dd4f
4
+ data.tar.gz: 8ec234b4d5ea8274cfc62675248c0aff0a6e04bbbc3844fae185e6f66075bca8
5
5
  SHA512:
6
- metadata.gz: a03362eb156c285cd3404ba16a68ede65fe91f923b9887a902bef8745af066bfa98d51b356a3efe43a62c77d0a06e083aeba30bf27e9fa41a97b213df2541209
7
- data.tar.gz: fcf7e3cb1e9db8bfeee79986324b541eb221a4b1dcaa26681f8bbb47ed4bb927a7038021388780a9c8b2d1cea196e0d4d0e2e89a83162de22a055b5c68b27082
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
  [![Downloads](https://img.shields.io/gem/dt/rails_map.svg)](https://rubygems.org/gems/rails_map)
5
5
  [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
6
6
  [![Ruby](https://img.shields.io/badge/ruby-%3E%3D%202.7.0-ruby.svg)](https://www.ruby-lang.org)
7
- [![Rails](https://img.shields.io/badge/rails-%3E%3D%205.0-red.svg)](https://rubyonrails.org)
7
+ [![Rails](https://img.shields.io/badge/rails-%3E%3D%205.0%2C%20%3C%209.0-red.svg)](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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsMap
4
- VERSION = "1.3.0"
4
+ VERSION = "1.3.1"
5
5
  end
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.0
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: '8.0'
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: '8.0'
32
+ version: '9.0'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement