Class: SlnProject::GlobalSectionBlock

Inherits:
BaseBlock
  • Object
show all
Defined in:
lib/fastlane/plugin/sapfire/sln_project/global_block.rb

Constant Summary collapse

TYPES =
{
  SolutionConfigurationPlatforms: "SolutionConfigurationPlatforms",
  SolutionProperties: "SolutionProperties",
  Unknown: "Unknown" # must be always the last
}.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type) ⇒ GlobalSectionBlock

Returns a new instance of GlobalSectionBlock.



90
91
92
# File 'lib/fastlane/plugin/sapfire/sln_project/global_block.rb', line 90

def initialize(type)
  self.type = type
end

Instance Attribute Details

#typeObject

Returns the value of attribute type.



88
89
90
# File 'lib/fastlane/plugin/sapfire/sln_project/global_block.rb', line 88

def type
  @type
end