Sha256: b7f0c3eb0856ea054c092adce3b9ce79eef66ecf24cf01d1b37d00290d6ba5c6
Contents?: true
Size: 551 Bytes
Versions: 4
Compression:
Stored size: 551 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rspec, cmd: "bundle exec rspec" do require "ostruct" # Generic Ruby apps rspec = OpenStruct.new rspec.spec = ->(m) { "spec/#{m}_spec.rb" } rspec.spec_dir = "spec" rspec.spec_helper = "spec/spec_helper.rb" watch(%r{^spec/.+_spec\.rb$}) watch(%r{^spec/usecase/(.+).rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^spec/support/(.+)\.rb$}) { "spec" } end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
active-orient-0.42 | Guardfile |
active-orient-0.4 | Guardfile |
active-orient-0.3 | Guardfile |
active-orient-0.2 | Guardfile |