new stuff

This commit is contained in:
John Bintz 2012-06-12 14:18:46 -04:00
commit dfb814cd50
3 changed files with 25 additions and 0 deletions

View File

@ -15,6 +15,24 @@ module CukePack
directory '.', '.'
end
desc "wip-guard", "Add the WIP guard to your Guardfile"
def wip_guard
FileUtils.touch 'Guardfile'
append_file 'Guardfile', <<-RB
# added by cuke-pack
group :wip do
guard 'cucumber', :env => :cucumber, :cli => '-p wip' do
watch(%r{^features/.+\.feature$})
watch(%r{^(app|lib).*}) { 'features' }
watch(%r{^features/support/.+$}) { 'features' }
watch(%r{^features/step_definitions/(.+)\.rb$}) { 'features' }
end
end
RB
end
default_task :install
end
end

View File

@ -0,0 +1,5 @@
require 'timecop'
After do
Timecop.return
end

View File

@ -21,3 +21,5 @@ require 'cuke-pack/support/flay'
# require 'cuke-pack/support/fakefs'
# require 'cuke-pack/support/mocha'
# Timecop support
# require 'cuke-pack/support/timecop'