rails_console_pro 0.1.0 → 0.1.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: 25b06c72354531b78adcf1d9bb69603cbf9bb421d1c39b657dc53cda8439b121
4
- data.tar.gz: c59152f9d427c3551593df5243f75817c3994ee3d2a25f890a4ed60a76ecd7bd
3
+ metadata.gz: c2bf3b43d1aec8df2a4c5c347b7732a99d9e3da3dc4466f07fec32237775d961
4
+ data.tar.gz: 1b2684a44388c146c0f1460807bfe972d66709dc9761a2ba4275d5b3825a382b
5
5
  SHA512:
6
- metadata.gz: 1c00cd583678bfcd5c4b38db9cf725232b87e860bc9c6618edc7e16219b51964183ea945947fb1f7be0026be3dffb8979c1c1040a092e6ba90ae970cf854aedb
7
- data.tar.gz: 7299172eaf40a86cfba2049bef2248b92c79da0152cc4d26b0ae26e3a4fe2d4253f8cfbfd3b185d98a3eb3ae53d1fa8b67b2ce96b15dca32ea2ab7a3352243eb
6
+ metadata.gz: 87415018c9a9b084ac0623683825beb95423783a38feaa02ee3ccfbe732d141379772c9041a78856c3b3491c414b798fa503ec9daa1b964b3e12c257eb084cb7
7
+ data.tar.gz: f640e154acc417cb01a696c3dcaca90dfb67b3e03dbe281a54243e76e606ffede5739caa39f67ba4a6aa9e72040ac50850f49c1b855f70537feafd9f3c1b1d87
data/CONTRIBUTING.md CHANGED
@@ -6,7 +6,7 @@ Thank you for your interest in contributing to Rails Console Pro!
6
6
 
7
7
  1. **Fork and clone the repository:**
8
8
  ```bash
9
- git clone https://github.com/yourusername/rails_console_pro.git
9
+ git clone https://github.com/harshumaretiya/rails_console_pro.git
10
10
  cd rails_console_pro
11
11
  ```
12
12
 
data/QUICK_START.md CHANGED
@@ -108,5 +108,5 @@ rails generate rails_console_pro:install
108
108
  ## Need Help?
109
109
 
110
110
  - Full documentation: See [README.md](README.md)
111
- - Issues: https://github.com/yourusername/rails_console_pro/issues
111
+ - Issues: https://github.com/harshumaretiya/rails_console_pro/issues
112
112
 
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Rails Console Pro
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/rails_console_pro.svg)](https://badge.fury.io/rb/rails_console_pro)
4
- [![Build Status](https://github.com/yourusername/rails_console_pro/workflows/CI/badge.svg)](https://github.com/yourusername/rails_console_pro/actions)
4
+ [![Build Status](https://github.com/harshumaretiya/rails_console_pro/workflows/CI/badge.svg)](https://github.com/harshumaretiya/rails_console_pro/actions)
5
5
 
6
6
  **Enhanced Rails console with powerful debugging tools and beautiful formatting.**
7
7
 
@@ -111,7 +111,7 @@ end
111
111
 
112
112
  ## 🤝 Contributing
113
113
 
114
- Bug reports and pull requests are welcome on GitHub at https://github.com/yourusername/rails_console_pro.
114
+ Bug reports and pull requests are welcome on GitHub at https://github.com/harshumaretiya/rails_console_pro.
115
115
 
116
116
  ## 📝 License
117
117
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Rails Console Pro Configuration
4
- # See https://github.com/yourusername/rails_console_pro for documentation
4
+ # See https://github.com/harshumaretiya/rails_console_pro for documentation
5
5
 
6
6
  RailsConsolePro.configure do |config|
7
7
  # Enable/disable features
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsConsolePro
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
6
6
 
@@ -20,13 +20,12 @@ Gem::Specification.new do |spec|
20
20
  - Export to JSON, YAML, and HTML
21
21
  - Smart pagination for large collections
22
22
  DESC
23
- spec.homepage = "https://github.com/yourusername/rails_console_pro"
23
+ spec.homepage = "https://github.com/harshumaretiya/rails_console_pro"
24
24
  spec.license = "MIT"
25
25
  spec.required_ruby_version = ">= 3.0.0"
26
26
 
27
- spec.metadata["homepage_uri"] = spec.homepage
28
- spec.metadata["source_code_uri"] = "https://github.com/yourusername/rails_console_pro"
29
- spec.metadata["changelog_uri"] = "https://github.com/yourusername/rails_console_pro/blob/main/CHANGELOG.md"
27
+ spec.metadata["source_code_uri"] = "https://github.com/harshumaretiya/rails_console_pro"
28
+ spec.metadata["changelog_uri"] = "https://github.com/harshumaretiya/rails_console_pro/blob/main/CHANGELOG.md"
30
29
  spec.metadata["rubygems_mfa_required"] = "true"
31
30
 
32
31
  # Specify which files should be added to the gem when it is released.
@@ -54,7 +53,7 @@ Gem::Specification.new do |spec|
54
53
  spec.add_development_dependency "bundler", "~> 2.0"
55
54
  spec.add_development_dependency "rake", "~> 13.0"
56
55
  spec.add_development_dependency "rspec", "~> 3.12"
57
- spec.add_development_dependency "rails", ">= 6.0"
56
+ spec.add_development_dependency "rails", "~> 6.0"
58
57
  spec.add_development_dependency "sqlite3", "~> 2.1"
59
58
  end
60
59
 
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_console_pro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Harsh
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2025-11-07 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: pastel
@@ -103,14 +104,14 @@ dependencies:
103
104
  name: rails
104
105
  requirement: !ruby/object:Gem::Requirement
105
106
  requirements:
106
- - - ">="
107
+ - - "~>"
107
108
  - !ruby/object:Gem::Version
108
109
  version: '6.0'
109
110
  type: :development
110
111
  prerelease: false
111
112
  version_requirements: !ruby/object:Gem::Requirement
112
113
  requirements:
113
- - - ">="
114
+ - - "~>"
114
115
  - !ruby/object:Gem::Version
115
116
  version: '6.0'
116
117
  - !ruby/object:Gem::Dependency
@@ -211,14 +212,14 @@ files:
211
212
  - lib/rails_console_pro/version.rb
212
213
  - lib/tasks/rails_console_pro.rake
213
214
  - rails_console_pro.gemspec
214
- homepage: https://github.com/yourusername/rails_console_pro
215
+ homepage: https://github.com/harshumaretiya/rails_console_pro
215
216
  licenses:
216
217
  - MIT
217
218
  metadata:
218
- homepage_uri: https://github.com/yourusername/rails_console_pro
219
- source_code_uri: https://github.com/yourusername/rails_console_pro
220
- changelog_uri: https://github.com/yourusername/rails_console_pro/blob/main/CHANGELOG.md
219
+ source_code_uri: https://github.com/harshumaretiya/rails_console_pro
220
+ changelog_uri: https://github.com/harshumaretiya/rails_console_pro/blob/main/CHANGELOG.md
221
221
  rubygems_mfa_required: 'true'
222
+ post_install_message:
222
223
  rdoc_options: []
223
224
  require_paths:
224
225
  - lib
@@ -233,7 +234,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
233
234
  - !ruby/object:Gem::Version
234
235
  version: '0'
235
236
  requirements: []
236
- rubygems_version: 3.7.2
237
+ rubygems_version: 3.1.6
238
+ signing_key:
237
239
  specification_version: 4
238
240
  summary: Enhanced Rails console with schema inspection, SQL explain, association navigation,
239
241
  and beautiful formatting