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
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.1 lib/active_support/core_ext/object/instance_variables.rb
ric-0.14.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.0 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.4.4 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.4.4 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.0.rc3 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.4.3 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.4.3 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.4.2 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.4.2 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.0.rc2 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.0.rc1 lib/active_support/core_ext/object/instance_variables.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4.1/lib/active_support/core_ext/object/instance_variables.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4.1/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.0.alpha2 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.0.alpha1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.4.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.4.1 lib/active_support/core_ext/object/instance_variables.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/instance_variables.rb