Created
October 4, 2012 00:19
-
-
Save shoyan/3830745 to your computer and use it in GitHub Desktop.
rakeファイルのサンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rake' | |
require 'rspec/core/rake_task' | |
# RSpec::Core::RakeTask.new(:spec) | |
# task :default => :spec | |
task :default do | |
filelist = FileList['spec/*_spec.rb'].join(' ') | |
sh "bundle exec rspec #{filelist}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment