Sha256: db87d15d58fa7b4cecce22e259f5ea33185ff85846a5f4531d3fcdcd59289e6a

Contents?: true

Size: 410 Bytes

Versions: 4

Compression:

Stored size: 410 Bytes

Contents

directories %w(lib spec) \
 .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}

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

  # RSpec files
  rspec = dsl.rspec
  watch(rspec.spec_files)
  watch(%r{^spec/.+\.rb$}) { rspec.spec_dir }
  watch(%r{^lib/.+\.rb$}) { rspec.spec_dir }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
es-http-client-0.2.0 Guardfile
es-http-client-0.1.2 Guardfile
es-http-client-0.1.1 Guardfile
es-http-client-0.1.0 Guardfile