Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas McDonald <tom@conceptcoding.co.uk>2013-01-20 18:48:46 +0400
committerThomas McDonald <tom@conceptcoding.co.uk>2013-01-20 18:48:46 +0400
commitc53b325b32af42d3a881016d8d0e91048f466d5d (patch)
treeee07e6484b385e48bb5d4e47f8bf47641ac112d5 /Rakefile
parentfcb35dda4c56bee06168c398644d3beed10b59b1 (diff)
Update rake:debug with file locations
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 06c5e1b..40dca3b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -12,7 +12,7 @@ task :debug do
require './lib/bootstrap-sass/rails_functions'
path = './vendor/assets/stylesheets'
%w(bootstrap bootstrap-responsive).each do |file|
- engine = Sass::Engine.for_file("#{path}/_#{file}.scss", syntax: :scss, load_paths: [path])
+ engine = Sass::Engine.for_file("#{path}/#{file}.scss", syntax: :scss, load_paths: [path])
File.open("./#{file}.css", 'w') { |f| f.write(engine.render) }
end
end