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>2012-02-06 17:38:26 +0400
committerThomas McDonald <tom@conceptcoding.co.uk>2012-02-06 17:38:26 +0400
commit4ae4653ff6e272ff6f477aa9af0e5eeba11e4de7 (patch)
tree3c80522658cd4db2e04402cd28a32deac595fcf4 /templates/project/manifest.rb
parent1e3fa24132af3178807dc3cdcc51360d5cc77dd3 (diff)
Update bootstrap-sass to 2.0.0
Now with support for Compass!
Diffstat (limited to 'templates/project/manifest.rb')
-rw-r--r--templates/project/manifest.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/project/manifest.rb b/templates/project/manifest.rb
new file mode 100644
index 0000000..32095d8
--- /dev/null
+++ b/templates/project/manifest.rb
@@ -0,0 +1,18 @@
+description "Bootstrap for SASS"
+
+# Stylesheet importing bootstrap
+stylesheet 'styles.scss'
+
+#
+# Other Bootstrap assets
+basedir = '../../vendor/assets'
+
+# Glyphicons sprites
+%w(glyphicons-halflings glyphicons-halflings-white).each do |file|
+ image "#{basedir}/images/#{file}.png", :to => "#{file}.png"
+end
+
+# Javascripts
+%w(alert button carousel collapse dropdown modal popover scrollspy tab tooltip transition typeahead).each do |file|
+ javascript "#{basedir}/javascripts/bootstrap-#{file}.js", :to => "bootstrap-#{file}.js"
+end \ No newline at end of file