Sha256: e7719e5dd7016673e2ac501caa2d8a159fe26b96acc8a112688f15cce2357a16

Contents?: true

Size: 1.11 KB

Versions: 58

Compression:

Stored size: 1.11 KB

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'bundler' do
  watch('Gemfile')
  # Uncomment next line if Gemfile contain `gemspec' command
  # watch(/^.+\.gemspec/)
end

guard 'coffeescript', :input => 'src', :output => '.', :bare => true
# Add files and commands to this file, like the example:
#   watch(%r{file/path}) { `command(s)` }
#
guard 'shell' do
  watch(/src\/lib\/(.*).coffee/) { |m|
    puts '  Building release component'
    puts `component-build --verbose --name release`

    puts '  Building development component'
    puts `component-build --verbose --name development --dev`

    puts '  Building tests component'
    puts `component-build --verbose --name test --dev`
  }

  watch(/component.json/) { |m|
    puts '  Installing possible new components'
    puts `component install`

    puts '  Building release component'
    puts `component-build --verbose --name release`

    puts '  Building development component'
    puts `component-build --verbose --name development --dev`

    puts '  Building tests component'
    puts `component-build --verbose --name test`
  }
end

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
ende-0.4.25 vendor/components/indefinido-indemma/Guardfile
ende-0.4.24 vendor/components/indefinido-indemma/Guardfile
ende-0.4.23 vendor/components/indefinido-indemma/Guardfile
ende-0.5.1 components/indefinido/indemma/master/Guardfile
ende-0.4.22 vendor/components/indefinido-indemma/Guardfile
ende-0.4.21 vendor/components/indefinido-indemma/Guardfile
ende-0.5.0 vendor/components/indefinido-indemma/Guardfile
ende-0.4.20 vendor/components/indefinido-indemma/Guardfile
ende-0.4.19 vendor/components/indefinido-indemma/Guardfile
ende-0.4.18 vendor/components/indefinido-indemma/Guardfile
ende-0.4.17 vendor/components/indefinido-indemma/Guardfile
ende-0.4.16 vendor/components/indefinido-indemma/Guardfile
ende-0.3.13 vendor/components/indefinido-indemma/Guardfile
ende-0.3.12 vendor/components/indefinido-indemma/Guardfile
ende-0.3.11 vendor/components/indefinido-indemma/Guardfile
ende-0.4.15 vendor/components/indefinido-indemma/Guardfile
ende-0.4.14 vendor/components/indefinido-indemma/Guardfile
ende-0.4.13 vendor/components/indefinido-indemma/Guardfile
ende-0.4.12 vendor/components/indefinido-indemma/Guardfile
ende-0.4.11 vendor/components/indefinido-indemma/Guardfile