Sha256: 1a8463b0ee5cf74978a4a6d98ae48e00a3e4ac5e343bdb37417bd91f4605254f
Contents?: true
Size: 891 Bytes
Versions: 2
Compression:
Stored size: 891 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 :rubocop do guard :rubocop, all_on_start: false, keep_failed: false, cli: ['-D'] do watch(%r{.+\.rb$}) watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } end guard :rspec, cmd: 'bundle exec rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(/^generators\/(.+)\.rb$/) { |_m| 'spec/schemaless/worker_spec' } watch('spec/spec_helper.rb') { 'spec' } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
typeright-0.0.5 | Guardfile |
typeright-0.0.3 | Guardfile |