Skip to content

Commit

Permalink
adjust gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
lance committed Apr 9, 2012
1 parent 671cde6 commit b7f5536
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ _tmp
Gemfile.lock
#Editor
*.tmproj
spec/.sass-cache/*/*.scssc
17 changes: 17 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
require 'rubygems'
require 'bundler/setup'
require 'rspec/core/rake_task'
require 'rake'

task :default => :test
task :test => :spec
if !defined?(RSpec)
puts "spec targets require RSpec"
else
desc "Run all examples"
RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = 'spec/**/*.rb'
t.rspec_opts = ['-cfs']
end
end

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit b7f5536

Please sign in to comment.