class Fastlane::Dependency
Attributes
available[R]
current[R]
latest[R]
name[R]
Public Class Methods
new(name, current, available, latest)
click to toggle source
# File lib/fastlane/plugin/dependency_manager_outdated/helper/module.rb, line 15 def initialize(name, current, available, latest) @name = name @current = current @available = available @latest = latest end
Public Instance Methods
to_hash()
click to toggle source
# File lib/fastlane/plugin/dependency_manager_outdated/helper/module.rb, line 22 def to_hash instance_variables.each_with_object({}) { |var, hash| hash[var.to_s.delete("@").to_sym] = instance_variable_get(var) } end