Sha256: f229cc76e5c77bc35eaad230be9157bdfa6458e3a8a8420e0f6edb9b7b015775
Contents?: true
Size: 435 Bytes
Versions: 14
Compression:
Stored size: 435 Bytes
Contents
notification :terminal_notifier if `uname` =~ /Darwin/ rspec_options = { cmd: "rspec", all_after_pass: false, all_on_start: false, failed_mode: :focus } guard :rspec, cmd: "bundle exec rspec" do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/blocks/(.+)\.rb$}) { |m| ["spec/features", "spec/unit/#{m[1]}_spec.rb"] } watch(%r{^lib/blocks.rb$}) { "spec" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
14 entries across 14 versions & 1 rubygems