Class: Sass::Repl

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

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Repl

Returns a new instance of Repl.



5
6
7
# File 'lib/sass/repl.rb', line 5

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

Instance Method Details

#runObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/sass/repl.rb', line 9

def run
  environment = Environment.new
  environment.set_var('important', Script::String.new('!important'))
  @line = 0
  loop do
    @line += 1
    unless text = Readline.readline('>> ')
      puts
      return
    end

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