Sha256: c1886380a384c76957a0ea29ae30d339c196a68331675ab151388dcd36a2a83a

Contents?: true

Size: 584 Bytes

Versions: 8

Compression:

Stored size: 584 Bytes

Contents

description 'Bootstrap'

# Stylesheet importing bootstrap
stylesheet 'styles.scss'

# Bootstrap variable overrides file
stylesheet '_bootstrap-variables.scss', :to => '_bootstrap-variables.scss'

# Copy JS
manifest = Pathname.new(File.dirname(__FILE__))
assets   = File.expand_path('../../assets', manifest)
{:javascript => 'javascripts'}.each do |method, dir|
  root = Pathname.new(assets).join(dir)
  Dir.glob root.join('**', '*.*') do |path|
    path = Pathname.new(path)
    send method, path.relative_path_from(manifest).to_s, :to => path.relative_path_from(root).to_s
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bootstrap-4.0.0.beta templates/project/manifest.rb
bootstrap-4.0.0.alpha6 templates/project/manifest.rb
bootstrap-4.0.0.alpha5 templates/project/manifest.rb
bootstrap-4.0.0.alpha4 templates/project/manifest.rb
bootstrap-4.0.0.alpha3.1 templates/project/manifest.rb
bootstrap-4.0.0.alpha3 templates/project/manifest.rb
bootstrap-4.0.0.alpha2 templates/project/manifest.rb
bootstrap-4.0.0.alpha1 templates/project/manifest.rb