forked from jlong/sass-bootstrap-defunct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
52 lines (41 loc) · 1.54 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
VERSION = "2.1.1"
BOOTSTRAP_CSS = "bootstrap-#{VERSION}.css"
BOOTSTRAP_MIN_CSS = "bootstrap-#{VERSION}.min.css"
BOOTSTRAP_RESPONSIVE_CSS = "bootstrap-responsive-#{VERSION}.css"
BOOTSTRAP_RESPONSIVE_MIN_CSS = "bootstrap-responsive-#{VERSION}.min.css"
SASS_COMMAND = "sass --precision 16 --load-path lib --style"
task BOOTSTRAP_CSS do |target|
sh "#{SASS_COMMAND} expanded lib/bootstrap.scss:#{target}"
css = IO.read(target.to_s)
css.gsub!('@DATE', `date`.strip)
File.open(target.to_s, 'w+') { |f| f.write(css) }
end
task BOOTSTRAP_MIN_CSS do |target|
sh "#{SASS_COMMAND} compressed lib/bootstrap.scss:#{target}"
end
task BOOTSTRAP_RESPONSIVE_CSS do |target|
sh "#{SASS_COMMAND} expanded lib/responsive.scss:#{target}"
css = IO.read(target.to_s)
css.gsub!('@DATE', `date`.strip)
File.open(target.to_s, 'w+') { |f| f.write(css) }
end
task BOOTSTRAP_RESPONSIVE_MIN_CSS do |target|
sh "#{SASS_COMMAND} compressed lib/responsive.scss:#{target}"
end
desc "build regular and compresed versions of bootstrap"
task :build => [BOOTSTRAP_CSS, BOOTSTRAP_MIN_CSS, BOOTSTRAP_RESPONSIVE_CSS, BOOTSTRAP_RESPONSIVE_MIN_CSS]
desc "rebuild regular version of bootstrap when modifications are made"
task :watch do
sh "#{SASS_COMMAND} expanded --watch lib/bootstrap.scss:#{BOOTSTRAP_CSS}"
end
task :default => :build