Class: VbNetEngine

Inherits:
AssemblyInfoEngine show all
Defined in:
lib/albacore/assemblyinfolanguages/vbnetengine.rb

Instance Method Summary collapse

Methods inherited from AssemblyInfoEngine

#build_attribute, #build_named_parameters, #build_positional_parameters, #build_using_statement

Constructor Details

#initializeVbNetEngine

Returns a new instance of VbNetEngine.



4
5
6
7
8
9
10
# File 'lib/albacore/assemblyinfolanguages/vbnetengine.rb', line 4

def initialize
  @using       = "Imports"
  @start_token = "<"
  @end_token   = ">"
  @assignment  = ":="
  @statement_terminator  = ""
end

Instance Method Details

#build_attribute_re(attr_name) ⇒ Object



12
13
14
# File 'lib/albacore/assemblyinfolanguages/vbnetengine.rb', line 12

def build_attribute_re(attr_name)
  /^\<assembly: #{attr_name}(.+)/  
end