Sha256: 048b27b4183de6162183cb83acc7a782f33c77f483f6aa237d04c8daad641f62

Contents?: true

Size: 740 Bytes

Versions: 194

Compression:

Stored size: 740 Bytes

Contents

# frozen_string_literal: true

class Object
  # Returns a hash with string keys that maps instance variable names without "@" to their
  # corresponding values.
  #
  #   class C
  #     def initialize(x, y)
  #       @x, @y = x, y
  #     end
  #   end
  #
  #   C.new(0, 1).instance_values # => {"x" => 0, "y" => 1}
  def instance_values
    Hash[instance_variables.map { |name| [name[1..-1], instance_variable_get(name)] }]
  end

  # Returns an array of instance variable names as strings including "@".
  #
  #   class C
  #     def initialize(x, y)
  #       @x, @y = x, y
  #     end
  #   end
  #
  #   C.new(0, 1).instance_variable_names # => ["@y", "@x"]
  def instance_variable_names
    instance_variables.map(&:to_s)
  end
end

Version data entries

194 entries across 180 versions & 25 rubygems

Version Path
activesupport-7.0.7.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.7.5 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.7 lib/active_support/core_ext/object/instance_variables.rb
mlh-rubocop-config-1.0.2 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/instance_variables.rb
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.5/lib/active_support/core_ext/object/instance_variables.rb
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.6 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.5.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.7.4 lib/active_support/core_ext/object/instance_variables.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.3.1/lib/active_support/core_ext/object/instance_variables.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/object/instance_variables.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/object/instance_variables.rb
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/instance_variables.rb
fablicop-1.10.2 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.5/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.5 lib/active_support/core_ext/object/instance_variables.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/activesupport-7.0.4.3/lib/active_support/core_ext/object/instance_variables.rb
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/core_ext/object/instance_variables.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.4.3 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.7.3 lib/active_support/core_ext/object/instance_variables.rb