Sha256: 5fa323cee18973d2bd125db936e0abfef135a2acf79b905c22fba3b45a62cc4d

Contents?: true

Size: 502 Bytes

Versions: 5

Compression:

Stored size: 502 Bytes

Contents

guard 'rspec', cmd: "bundle exec rspec" do

  watch('spec/spec_helper.rb')                        { "spec" }
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^app/(.+)\.rb$})                           { |m| "spec/#{m[1]}_spec.rb" }

  watch(%r{^lib/sharing_tags/(.+)\.rb$}) { |m| "spec/models/#{m[1]}_spec.rb" }

end

guard :teaspoon do
  # Implementation files
  watch(%r{^app/assets/javascripts/sharing_tags/(.+).coffee}) { |m| "#{m[1]}_spec" }

  # Specs / Helpers
  watch(%r{^spec/javascripts/(.+)})
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sharing_tags-0.0.9 Guardfile
sharing_tags-0.0.8 Guardfile
sharing_tags-0.0.7 Guardfile
sharing_tags-0.0.6 Guardfile
sharing_tags-0.0.5 Guardfile