Sha256: 3ff5287d993139b261fe6d2f3d2c965131b9e5afaade04d3b11d7996d637a35e
Contents?: true
Size: 601 Bytes
Versions: 7
Compression:
Stored size: 601 Bytes
Contents
case RbConfig::CONFIG['target_os'] when /windows|bccwin|cygwin|djgpp|mingw|mswin|wince/i notification :gntp, :host => 'localhost' when /linux/i notification :notifysend when /mac|darwin/i notification :growl end guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) end guard 'rspec', :all_on_start => true, :all_after_pass => true, :notification => true, :cmd => 'bundle exec rspec' do watch('.rspec') { 'spec' } watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { 'spec' } end
Version data entries
7 entries across 7 versions & 2 rubygems