instance_vars_panel 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 3968b52b6d5d6ebee5f5537b4e16bf2047dcb3ca9aa8a6d139d7dd067d7e24ab
4
+ data.tar.gz: ece2ec278070866bd075d1c670132689527c097e1830e2256fdb7d3f5600f078
5
+ SHA512:
6
+ metadata.gz: 77b313650c03b91299019875832ff2d053ee178c9f24c6043abf21cbb0b452cc652d19e9d165c67382121aa0b0b622de98ef3c2d654556ff7cf29c118b675df1
7
+ data.tar.gz: 3607839fe471a6067f84066ccf3b5614eb191de4598f7a70c4717d166ac6ae4298aa2c2994c82f10ca8f5b4027158bcf7b94d5d2f354724225bb75675d8c748f
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/instance_vars_panel/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "instance_vars_panel"
7
+ spec.version = InstanceVarsPanel::VERSION
8
+ spec.authors = ["Horokhov Aleksandr"]
9
+ spec.email = ["aleksandr.gorokhov@rubygarage.org"]
10
+
11
+ spec.summary = "A debugging tool for inspecting instance variables in Ruby applications."
12
+ spec.description = "InstanceVarsPanel is a debugging tool designed to help developers inspect and analyze instance variables in Ruby applications with ease."
13
+ spec.homepage = "https://github.com/GorohovAlex"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 3.0.0"
16
+
17
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/GorohovAlex"
21
+ spec.metadata["changelog_uri"] = "https://github.com/GorohovAlex"
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ gemspec = File.basename(__FILE__)
26
+ spec.files = Dir.glob("{lib,exe}/**/*") + ["instance_vars_panel.gemspec"]
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+ end
@@ -0,0 +1,11 @@
1
+ module InstanceVarsPanel
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace InstanceVarsPanel
4
+
5
+ initializer "instance_vars_panel.view_helpers" do
6
+ ActiveSupport.on_load(:action_controller_base) do
7
+ helper InstanceVarsPanel::DebugHelper
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module InstanceVarsPanel
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "instance_vars_panel/version"
4
+ require "instance_vars_panel/engine" if defined?(Rails)
5
+
6
+ module InstanceVarsPanel
7
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: instance_vars_panel
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Horokhov Aleksandr
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2025-03-24 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: InstanceVarsPanel is a debugging tool designed to help developers inspect
14
+ and analyze instance variables in Ruby applications with ease.
15
+ email:
16
+ - aleksandr.gorokhov@rubygarage.org
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - instance_vars_panel.gemspec
22
+ - lib/instance_vars_panel.rb
23
+ - lib/instance_vars_panel/engine.rb
24
+ - lib/instance_vars_panel/version.rb
25
+ homepage: https://github.com/GorohovAlex
26
+ licenses:
27
+ - MIT
28
+ metadata:
29
+ allowed_push_host: https://rubygems.org
30
+ homepage_uri: https://github.com/GorohovAlex
31
+ source_code_uri: https://github.com/GorohovAlex
32
+ changelog_uri: https://github.com/GorohovAlex
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 3.0.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.5.23
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: A debugging tool for inspecting instance variables in Ruby applications.
52
+ test_files: []