Sha256: 0420ebc24c0e4db6ea3319d630c7363dcf86cb064fcb7812a644dfaf40e9c66f

Contents?: true

Size: 800 Bytes

Versions: 64

Compression:

Stored size: 800 Bytes

Contents

# encoding: ascii-8bit

# Copyright 2014 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt

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

ignore /~$/
ignore /^(?:.*[\\\/])?\.[^\\\/]+\.sw[p-z]$/

guard :bundler do
  watch('Gemfile')
end

guard :rspec, cmd: 'bundle exec rspec --color' do
  watch('spec/spec_helper.rb')    { 'spec' }
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/cosmos/(.+)\.rb$}) { |m| "spec/#{m[1]}/#{m[1]}_spec.rb" }
  watch(%r{^lib/cosmos/(.+)/(.+)\.rb$}) { |m| "spec/#{m[1]}/#{m[2]}_spec.rb" }
end

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
cosmos-4.5.2-java Guardfile
cosmos-4.5.2 Guardfile
cosmos-4.5.1-java Guardfile
cosmos-4.5.1 Guardfile
cosmos-4.5.0-java Guardfile
cosmos-4.5.0 Guardfile
cosmos-4.4.2-java Guardfile
cosmos-4.4.2 Guardfile
cosmos-4.4.1-java Guardfile
cosmos-4.4.1 Guardfile
cosmos-4.4.0-java Guardfile
cosmos-4.4.0 Guardfile
cosmos-4.3.0-java Guardfile
cosmos-4.3.0 Guardfile
cosmos-4.2.4-java Guardfile
cosmos-4.2.4 Guardfile
cosmos-4.2.3-java Guardfile
cosmos-4.2.3 Guardfile
cosmos-4.2.2-java Guardfile
cosmos-4.2.2 Guardfile