9
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SCSS文字列をRubyプログラム中でCSSにコンパイルする

Posted at

みなさんご存知の通り、sassというGemをインストールすることで、

$ gem install sass

以下のようにして、SCSSファイルをCSSにコンパイルできます。

$ sass input.scss output.css

しかし、コマンドラインでなく、Rubyプログラム中でSCSS文字列をCSS文字列にコンパイルするにはどうすればいいのでしょうか。
結論としては、以下のようにすればOKです。
(Ruby初心者なんでコードだせぇww とか言わないでw)

#!/usr/bin/env ruby

require 'sass'

stdinStr = "";
while line = STDIN.gets
    if (/exit/ =~ line)
        break;
    end
    stdinStr += line
end

engine = Sass::Engine.new(stdinStr, :syntax => :scss)

begin
    print engine.render
rescue => ex
    print "Line " + ex.sass_line.to_s + ": " + ex.to_s + "\n"
end

なんらかの事情で、コマンドラインを介さずに動的にSCSSをコンパイルしなければならない場合(Webデザイン系のWebサービスを作るときとか?)に使えるのではないでしょうか。

9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?