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.



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

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



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

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

Instance Method Details

#readObject



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

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