Class: Sass::Repl

Inherits:
Object
  • Object
show all
Defined in:
lib/sass/repl.rb

Overview

Runs a SassScript read-eval-print loop. It presents a prompt on the terminal, reads in SassScript expressions, evaluates them, and prints the result.

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Repl

Returns a new instance of Repl.

Parameters:

  • options ({Symbol => Object}) (defaults to: {})

    An options hash.



11
12
13
# File 'lib/sass/repl.rb', line 11

def initialize(options = {})
  @options = options
end

Instance Method Details

#run

Starts the read-eval-print loop.



16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/sass/repl.rb', line 16

def run
  environment = Environment.new
  @line = 0
  loop do
    @line += 1
    unless (text = Readline.readline('>> '))
      puts
      return
    end

    Readline::HISTORY << text
    parse_input(environment, text)
  end
end