Skip to content

Commit

Permalink
Merge pull request sass#82 from samjewell/remove-puts-comments
Browse files Browse the repository at this point in the history
Remove commented out puts statements
  • Loading branch information
bolandrm authored Nov 7, 2016
2 parents b76761d + 1c1acae commit 63acddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/sassc/rails/railtie.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class Railtie < ::Rails::Railtie
end

if env.respond_to?(:register_transformer)
env.register_transformer 'text/sass', 'text/css', SassC::Rails::SassTemplate.new #->() { puts "yoyoyoy" }
env.register_transformer 'text/scss', 'text/css', SassC::Rails::ScssTemplate.new #->() { puts "yoyoyoy" }
env.register_transformer 'text/sass', 'text/css', SassC::Rails::SassTemplate.new
env.register_transformer 'text/scss', 'text/css', SassC::Rails::ScssTemplate.new
end

if env.respond_to?(:register_engine)
Expand Down

0 comments on commit 63acddc

Please sign in to comment.