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:
authorGleb Mazovetskiy <glex.spb@gmail.com>2013-11-09 02:37:49 +0400
committerGleb Mazovetskiy <glex.spb@gmail.com>2013-11-09 02:44:26 +0400
commit668b623d218789e4adefec3951a1445aec37ca83 (patch)
tree6d73016a62ffdb984b7116ea7a8274ebe9d2801e /templates
parentac8ffd34c711e82f1a5c9fd9b999b9f39371e6d2 (diff)
potential fix for compass problems
Diffstat (limited to 'templates')
-rw-r--r--templates/project/manifest.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/project/manifest.rb b/templates/project/manifest.rb
index 3ed9875..9025d71 100644
--- a/templates/project/manifest.rb
+++ b/templates/project/manifest.rb
@@ -5,12 +5,12 @@ stylesheet 'styles.scss'
# SCSS:
bs_stylesheets = "../../vendor/assets/stylesheets/bootstrap"
-stylesheet '_variables.scss.erb', to: '_variables.scss', erb: true,
- bs_variables_path: File.expand_path("#{bs_stylesheets}/_variables.scss", File.dirname(__FILE__))
+stylesheet '_variables.scss.erb', :to => '_variables.scss', :erb => true,
+ :bs_variables_path => File.expand_path("#{bs_stylesheets}/_variables.scss", File.dirname(__FILE__))
# JS:
bs_javascripts = "../../vendor/assets/javascripts/bootstrap"
Dir.glob File.expand_path("#{bs_javascripts}/*.js", File.dirname(__FILE__)) do |path|
file = File.basename(path)
- javascript "#{bs_javascripts}/#{file}", to: "bootstrap/#{file}"
+ javascript "#{bs_javascripts}/#{file}", :to => "bootstrap/#{file}"
end