Sha256: 5fe10d2b5a77335dc19934f3c54bd35a7f9fedfafb8df4df84f8b530c4819b45

Contents?: true

Size: 596 Bytes

Versions: 1

Compression:

Stored size: 596 Bytes

Contents

guard 'bundler' do
  watch('Gemfile')
  # Uncomment next line if Gemfile contain `gemspec' command
  watch(/^.+\.gemspec/)
end

spork_port = RUBY_VERSION >= '1.9.2' ? 8989 : 8988
guard 'spork', :cucumber => false, :bundler => false, :rspec_port => spork_port do
end

guard 'rspec', :version => 2, :cli => "--drb --drb-port #{spork_port} --color --format doc" do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

guard 'yard', :plugin => 'yard-tomdoc' do
  watch(%r{lib/.+\.rb})
  watch(%r{README})
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
queencheck-1.0.0 Guardfile