Sha256: 7fc6c157b97887266ed62bf46b4ef959b4c4f90c11a85ad667a52558c4ef0ad9

Contents?: true

Size: 478 Bytes

Versions: 13

Compression:

Stored size: 478 Bytes

Contents

# A guardfile for making Danger Plugins
# For more info see https://github.com/guard/guard#readme

# To run, use `bundle exec guard`.

guard :rspec, cmd: "bundle exec rspec" do
  require "guard/rspec/dsl"
  dsl = Guard::RSpec::Dsl.new(self)

  # RSpec files
  rspec = dsl.rspec
  watch(rspec.spec_helper) { rspec.spec_dir }
  watch(rspec.spec_support) { rspec.spec_dir }
  watch(rspec.spec_files)

  # Ruby files
  ruby = dsl.ruby
  dsl.watch_spec_files_for(ruby.lib_files)
end

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
danger-todoist-2.0.1 Guardfile
danger-todoist-2.0.0 Guardfile
danger-todoist-1.3.0 Guardfile
danger-yamllint-0.0.1 Guardfile
danger-favro-1.0.2 Guardfile
danger-favro-1.0.1 Guardfile
danger-missed_localizable_strings-1.0.3 Guardfile
danger-favro-1.0.0 Guardfile
danger-missed_localizable_strings-1.0.2 Guardfile
danger-todoist-1.2.3 Guardfile
danger-todoist-1.2.2 Guardfile
danger-todoist-1.2.1 Guardfile
danger-todoist-1.2.0 Guardfile