Class: Cucumber::Runtime::NormalisedEncodingFile
- Inherits:
-
Object
- Object
- Cucumber::Runtime::NormalisedEncodingFile
- 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
-
#initialize(path) ⇒ NormalisedEncodingFile
constructor
A new instance of NormalisedEncodingFile.
- #read ⇒ Object
Constructor Details
#initialize(path) ⇒ NormalisedEncodingFile
Returns a new instance of NormalisedEncodingFile.
140 141 142 143 144 145 146 147 |
# File 'lib/cucumber/runtime.rb', line 140 def initialize(path) @file = File.new(path) set_encoding rescue Errno::EACCES => e raise FileNotFoundException.new(e, File.(path)) rescue Errno::ENOENT raise FeatureFolderNotFoundException, path end |
Class Method Details
.read(path) ⇒ Object
136 137 138 |
# File 'lib/cucumber/runtime.rb', line 136 def self.read(path) new(path).read end |
Instance Method Details
#read ⇒ Object
149 150 151 |
# File 'lib/cucumber/runtime.rb', line 149 def read @file.read.encode('UTF-8') end |