Class: Cucumber::Runtime::NormalisedEncodingFile

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/runtime.rb

Constant Summary collapse

COMMENT_OR_EMPTY_LINE_PATTERN =

:nodoc:

/^\s*#|^\s*$/
ENCODING_PATTERN =

:nodoc:

/^\s*#\s*encoding\s*:\s*([^\s]+)/

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ NormalisedEncodingFile

Returns a new instance of NormalisedEncodingFile.



135
136
137
138
139
140
141
142
143
144
# File 'lib/cucumber/runtime.rb', line 135

def initialize(path)
  begin
    @file = File.new(path)
    set_encoding
  rescue Errno::EACCES => e
    raise FileNotFoundException.new(e, File.expand_path(path))
  rescue Errno::ENOENT => e
    raise FeatureFolderNotFoundException.new(e, path)
  end
end

Class Method Details

.read(path) ⇒ Object



131
132
133
# File 'lib/cucumber/runtime.rb', line 131

def self.read(path)
  new(path).read
end

Instance Method Details

#readObject



146
147
148
# File 'lib/cucumber/runtime.rb', line 146

def read
  @file.read.encode("UTF-8")
end