47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| #!/usr/bin/ruby
 | |
| #
 | |
| # More info at https://github.com/guard/guard#readme
 | |
| 
 | |
| guard_opts = {
 | |
|   all_on_start:   true,
 | |
|   all_after_pass: true,
 | |
| }
 | |
| 
 | |
| DEBUG = false
 | |
| 
 | |
| def reload(target)
 | |
|   puts "-> #{target}" if DEBUG
 | |
|   target
 | |
| end
 | |
| 
 | |
| def all_specs;      reload 'all_specs';      'spec'           end
 | |
| def library_specs;  reload 'library_specs';  'spec/libraries' end
 | |
| def provider_specs; reload 'provider_specs'; 'spec/providers' end
 | |
| 
 | |
| group :rspec do
 | |
|   guard 'rspec', guard_opts do
 | |
|     watch(%r{^Gemfile$})                   { all_specs }
 | |
|     watch(%r{^Gemfile.lock$})              { all_specs }
 | |
|     watch(%r{^spec/spec_helper\.rb$})      { all_specs }
 | |
|     watch(%r{^spec/helpers/(.+)\.rb$})     { all_specs }
 | |
|     watch(%r{^spec/fixtures/(.+)\.rb$})    { all_specs }
 | |
|     watch(%r{^libraries/pacemaker\.rb$})   { all_specs }
 | |
|     watch(%r{^libraries/(.*mixin.*)\.rb$}) { library_specs }
 | |
|     watch(%r{^(spec/.+_spec\.rb)$})        { |m| reload m[1] }
 | |
|     watch(%r{^libraries/(.+)\.rb$})  { |m|
 | |
|       reload "spec/libraries/#{m[1]}_spec.rb"
 | |
|     }
 | |
|     watch(%r{^providers/common\.rb$})      { provider_specs }
 | |
|     watch(%r{^providers/(.*mixin.*)\.rb$}) { provider_specs }
 | |
|     watch(%r{^(?:resources|providers)/(.+)\.rb$}) { |m|
 | |
|       reload "spec/providers/#{m[1]}_spec.rb"
 | |
|     }
 | |
|   end
 | |
| end
 | |
| 
 | |
| group :bundler do
 | |
|   guard 'bundler' do
 | |
|     watch('Gemfile')
 | |
|   end
 | |
| end
 | 
