Sha256: 69fb8bab113d25e1e33e9f94865777539a3d5dd508b9b839eab79fffd637fe8a

Contents?: true

Size: 449 Bytes

Versions: 3

Compression:

Stored size: 449 Bytes

Contents

interactor :simple

guard 'bundler' do
  watch('Gemfile')
end

guard 'rack', server: 'thin' do
  watch('Gemfile.lock')
  watch('config.ru')
  watch(%r{^config|app|public|lib|schemas|scripts\/.*})
end

guard 'yard', port: '8808', cli: '--reload' do
  watch(%r{app\/.+\.rb})
  watch(%r{lib\/.+\.rb})
  watch(/.+\.md/)
end

guard :rubocop do
  watch(/.+\.rb$/)
  watch(%r{(?:.+\/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nucleus-0.3.1 Guardfile
nucleus-0.2.0 Guardfile
nucleus-0.1.0 Guardfile