Sha256: 9a54e690dbdedb415f356458556f3d0f25b834069b268bbd88b603f0967a8936
Contents?: true
Size: 723 Bytes
Versions: 3
Compression:
Stored size: 723 Bytes
Contents
# Note: The cmd option is now required due to the increasing number of ways # rspec may be run, below are examples of the most common uses. # * bundler: 'bundle exec rspec' # * bundler binstubs: 'bin/rspec' # * spring: 'bin/rsspec' (This will use spring if running and you have # installed the spring binstubs per the docs) # * zeus: 'zeus rspec' (requires the server to be started separetly) # * 'just' rspec: 'rspec' guard :rspec, cmd: 'bundle exec rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^spec/support/(.+)\.rb$}) { "spec" } watch(%r{^lib/pivot_table.rb$}) { "spec" } watch(%r{^lib/pivot_table/(.+)\.rb$}) { "spec" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pivot_table-0.5.0 | Guardfile |
pivot_table-0.4.0 | Guardfile |
pivot_table-0.3.0 | Guardfile |