Module: IcedCoffeeScript::Source
- Defined in:
- lib/iced_coffee_script.rb
Class Method Summary collapse
- .bare_option ⇒ Object
- .contents ⇒ Object
- .context ⇒ Object
- .path ⇒ Object
- .path=(path) ⇒ Object
- .version ⇒ Object
Class Method Details
.bare_option ⇒ Object
26 27 28 |
# File 'lib/iced_coffee_script.rb', line 26 def self. @bare_option ||= contents.match(/noWrap/) ? 'noWrap' : 'bare' end |
.contents ⇒ Object
18 19 20 |
# File 'lib/iced_coffee_script.rb', line 18 def self.contents @contents ||= File.read(path) end |
.context ⇒ Object
30 31 32 |
# File 'lib/iced_coffee_script.rb', line 30 def self.context @context ||= ExecJS.compile(contents) end |
.path ⇒ Object
9 10 11 |
# File 'lib/iced_coffee_script.rb', line 9 def self.path @path ||= ENV['COFFEESCRIPT_SOURCE_PATH'] || bundled_path end |
.path=(path) ⇒ Object
13 14 15 16 |
# File 'lib/iced_coffee_script.rb', line 13 def self.path=(path) @contents = @version = @bare_option = @context = nil @path = path end |
.version ⇒ Object
22 23 24 |
# File 'lib/iced_coffee_script.rb', line 22 def self.version @version ||= contents[/IcedCoffeeScript Compiler v([\d.]+)/, 1] end |