Sha256: 384d67ad9229d3294808938c7446d683cc52f6ddc4735e8ded666c6daa0425c5

Contents?: true

Size: 579 Bytes

Versions: 4

Compression:

Stored size: 579 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 Fuubar" 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})
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
queencheck-0.1.2 Guardfile
queencheck-0.1.1 Guardfile
queencheck-0.1.0 Guardfile
queencheck-0.0.2 Guardfile