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

manifest.rb « project « templates - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32095d8bdf0ee83210166241cdda00ce8251fbac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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