Sha256: e53ca20876f48eac8b1015b92e2e1cf2f09b8d4276385500972172fb705cc379

Contents?: true

Size: 1.12 KB

Versions: 15

Compression:

Stored size: 1.12 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(/(.*).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|lib\/observable/) { |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 --dev`
  }
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
ende-0.4.25 vendor/components/indefinido-observable/Guardfile
ende-0.4.24 vendor/components/indefinido-observable/Guardfile
ende-0.4.23 vendor/components/indefinido-observable/Guardfile
ende-0.4.22 vendor/components/indefinido-observable/Guardfile
ende-0.4.21 vendor/components/indefinido-observable/Guardfile
ende-0.4.15 vendor/components/indefinido-observable/Guardfile
ende-0.4.14 vendor/components/indefinido-observable/Guardfile
ende-0.4.13 vendor/components/indefinido-observable/Guardfile
ende-0.4.12 vendor/components/indefinido-observable/Guardfile
ende-0.4.11 vendor/components/indefinido-observable/Guardfile
ende-0.4.10 vendor/components/indefinido-observable/Guardfile
ende-0.4.9 vendor/components/indefinido-observable/Guardfile
ende-0.4.8 vendor/components/indefinido-observable/Guardfile
ende-0.4.7 vendor/components/indefinido-observable/Guardfile
ende-0.4.6 vendor/components/indefinido-observable/Guardfile