class Albacore::Asmver::Cs

Public Class Methods

new() click to toggle source
# File lib/albacore/task_types/asmver/cs.rb, line 5
def initialize
  @using       = "using"
  @start_token = "["
  @end_token   = "]"
  @assignment  = "="
  @statement_terminator  = ";"
end

Public Instance Methods

build_attribute_re(attr_name) click to toggle source
# File lib/albacore/task_types/asmver/cs.rb, line 13
def build_attribute_re(attr_name)
  /^\[assembly: #{attr_name}(.+)/  
end
namespace_end() click to toggle source
# File lib/albacore/task_types/asmver/cs.rb, line 22
def namespace_end
  ""
end
namespace_start(*_) click to toggle source

no namespaces

# File lib/albacore/task_types/asmver/cs.rb, line 18
def namespace_start *_
  ""
end