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:
authorGleb Mazovetskiy <glex.spb@gmail.com>2015-07-01 22:45:14 +0300
committerGleb Mazovetskiy <glex.spb@gmail.com>2015-07-01 22:45:14 +0300
commit7097cf5572e8f61b634c34e0dad86961b111b3b6 (patch)
tree6981ee633f78c9d4ee3660563a07e64a758dbe82 /Rakefile
parent47819e892fc0f2fa9c7269fdf297aa5e81a361c6 (diff)
Update node.js devDeps, tests, new mincer compat
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 8b9a9fc..91cb0cd 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,9 +4,10 @@ $:.unshift(lib_path) unless $:.include?(lib_path)
load './tasks/bower.rake'
require 'rake/testtask'
-task :test do |t|
- $: << File.expand_path('test/')
- Dir.glob('./test/**/*_test.rb').each { |file| require file }
+Rake::TestTask.new do |t|
+ t.libs << 'test'
+ t.test_files = FileList['test/**/*_test.rb']
+ t.verbose = true
end
desc 'Dumps output to a CSS file for testing'