Skip to content

Commit

Permalink
Merge pull request #7 from ejholmes/default-rake-task
Browse files Browse the repository at this point in the history
Default rake task runs specs.
  • Loading branch information
dam5s committed Nov 10, 2012
2 parents 5f2b6c6 + 7cafd93 commit 380dd21
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"

task :default => [:spec]

require 'rspec/core/rake_task'
desc "Run specs"
RSpec::Core::RakeTask.new do |t|
t.pattern = 'spec/**/*_spec.rb'
end

0 comments on commit 380dd21

Please sign in to comment.