Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1 from jgdavey/master
Include standard RSpec helpers and Rakefile
  • Loading branch information
davelyon committed Feb 13, 2012
2 parents f73228c + 72d637d commit f67f943
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .rspec
@@ -0,0 +1 @@
--color
5 changes: 5 additions & 0 deletions Rakefile
@@ -0,0 +1,5 @@
require 'rspec/core/rake_task'

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

task :default => :spec
4 changes: 4 additions & 0 deletions spec/spec_helper.rb
@@ -0,0 +1,4 @@
lib = File.expand_path("../lib", __FILE__)
$:.unshift(lib) unless $:.include?(lib)

require 'dummy_image'

0 comments on commit f67f943

Please sign in to comment.