Sha256: 43bf01c5c59cb69f487f282b010acec53f1ce68ea2cfae756ddfcdc932333105
Contents?: true
Size: 663 Bytes
Versions: 10
Compression:
Stored size: 663 Bytes
Contents
guard :rspec, cmd: "bundle exec rspec" do require "guard/rspec/dsl" dsl = Guard::RSpec::Dsl.new(self) # Feel free to open issues for suggestions and improvements # 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 guard "ctags-bundler", src_path: ["lib", "spec/support"] do watch(%r{(lib|spec\/support)\/.*\.rb$/}) watch("Gemfile.lock") end guard :rubocop do watch(%r{exe/*}) watch(/.+\.rb$/) watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } end
Version data entries
10 entries across 10 versions & 1 rubygems