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-05-06 22:50:46 +0400
committerThomas McDonald <tom@conceptcoding.co.uk>2012-05-06 22:50:46 +0400
commitff71c5f2aaa8cddc97d787c829b5d62ffb5e5dbd (patch)
tree7cf54d1bb9a3c6dd1a9554710706b3da331a31ec /Rakefile
parent1503314ca285f4188eb81251f457a741ece858f4 (diff)
add tests to check for compilation errors with Sass
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..cc6711f
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,8 @@
+require 'rake/testtask'
+Rake::TestTask.new do |t|
+ t.libs << "test"
+ t.test_files = FileList['test/*_test.rb']
+ t.verbose = true
+end
+
+task default: :test \ No newline at end of file