Class: Finitio::ProxyType
Constant Summary
Constants included from Metadata
Instance Attribute Summary collapse
-
#target ⇒ Object
readonly
Returns the value of attribute target.
-
#target_name ⇒ Object
readonly
Returns the value of attribute target_name.
Instance Method Summary collapse
-
#initialize(target_name, target = nil) ⇒ ProxyType
constructor
A new instance of ProxyType.
- #resolve(system) ⇒ Object
Methods inherited from Type
#==, #anonymous?, #default_name, #dress, #include?, #name, #name=, #named?, #to_s
Methods included from Metadata
#metadata, #metadata=, #metadata?
Constructor Details
#initialize(target_name, target = nil) ⇒ ProxyType
Returns a new instance of ProxyType.
4 5 6 7 8 9 10 11 |
# File 'lib/finitio/type/proxy_type.rb', line 4 def initialize(target_name, target = nil) unless target_name.is_a?(String) raise ArgumentError, "String expected for type name, got `#{target_name}`" end @target_name = target_name @target = target end |
Instance Attribute Details
#target ⇒ Object (readonly)
Returns the value of attribute target.
12 13 14 |
# File 'lib/finitio/type/proxy_type.rb', line 12 def target @target end |
#target_name ⇒ Object (readonly)
Returns the value of attribute target_name.
12 13 14 |
# File 'lib/finitio/type/proxy_type.rb', line 12 def target_name @target_name end |
Instance Method Details
#resolve(system) ⇒ Object
33 34 35 36 37 |
# File 'lib/finitio/type/proxy_type.rb', line 33 def resolve(system) @target = system.fetch(target_name) do raise Error, "No such type `#{target_name}`" end end |