Skip to content

Commit

Permalink
Cleans up Rakefile and spec_helper #9
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenmckinney committed Jan 18, 2013
1 parent 2f8f6fb commit 4920794
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
9 changes: 2 additions & 7 deletions Rakefile
Expand Up @@ -4,11 +4,6 @@ require 'yard'

task :default => :spec

desc 'Run specs'
RSpec::Core::RakeTask.new(:spec) do |t|
t.verbose = false
t.rspec_opts = '--order random --color'
end
RSpec::Core::RakeTask.new(:spec)

YARD::Rake::YardocTask.new do |t|
end
YARD::Rake::YardocTask.new(:doc)
7 changes: 5 additions & 2 deletions spec/spec_helper.rb
@@ -1,3 +1,6 @@
require 'pomo'

$:.unshift File.dirname(__FILE__) + '/../lib'
require 'pomo'
RSpec.configure do |config|
config.color = true
config.order = 'random'
end

0 comments on commit 4920794

Please sign in to comment.