Skip to content

Commit

Permalink
add spec task and make it default task
Browse files Browse the repository at this point in the history
  • Loading branch information
eitoball committed Jun 29, 2015
1 parent 83950c7 commit 42051ab
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"

begin
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task :default => :spec
rescue LoadError
end

1 comment on commit 42051ab

@michaelglass
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.