Module: Coco::Source

Defined in:
lib/coco.rb

Class Method Summary collapse

Class Method Details

.bare_optionObject



26
27
28
# File 'lib/coco.rb', line 26

def self.bare_option
  @bare_option ||= contents.match(/noWrap/) ? 'noWrap' : 'bare'
end

.contentsObject



18
19
20
# File 'lib/coco.rb', line 18

def self.contents
  @contents ||= File.read(path)
end

.contextObject



30
31
32
# File 'lib/coco.rb', line 30

def self.context
  @context ||= ExecJS.compile(contents)
end

.pathObject



9
10
11
# File 'lib/coco.rb', line 9

def self.path
  @path ||= ENV['COCO_SOURCE_PATH'] || bundled_path
end

.path=(path) ⇒ Object



13
14
15
16
# File 'lib/coco.rb', line 13

def self.path=(path)
  @contents = @version = @bare_option = @context = nil
  @path = path
end

.versionObject



22
23
24
# File 'lib/coco.rb', line 22

def self.version
  @version ||= contents[/Coco ([\d.]+)/, 1]
end