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:
authorPeter Gumeson <gumeson@gmail.com>2013-05-24 01:51:56 +0400
committerPeter Gumeson <gumeson@gmail.com>2013-05-24 01:51:56 +0400
commit49811fb945d1a9847c0cd4fb6a86213ba72acdb3 (patch)
tree265f81d5b5208f2162432a790a23655bdfa6057e /Rakefile
parent4c44d12fdc74ff0ca37b380ac18e7f716d062e72 (diff)
Ported converter rake task from compass-twitter-bootstrap gem.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index aea95fc..5dbc8eb 100644
--- a/Rakefile
+++ b/Rakefile
@@ -17,4 +17,11 @@ task :debug do
end
end
-task default: :test \ No newline at end of file
+desc 'Convert bootstrap to bootstrap-sass'
+task :convert, :branch do |t, args|
+ require './tasks/converter'
+ branch = args[:branch]
+ Converter.new(branch).process
+end
+
+task default: :test