fuel-library/deployment/puppet/filemapper/Guardfile
Sergey Vasilenko 879910023c Add upstream puppet modules
for parsing text config files by mapping to hash
and for boolean values normalization in types

Fuel-CI: disable
Change-Id: I9b0d71eea357e9e27141caacf307cd0e40b9f5df
Blueprint: refactor-l23-linux-bridges
2015-03-05 10:51:47 +03:00

10 lines
255 B
Ruby

# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard 'rspec', :version => 2 do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end