Sha256: 204baadbf536c56ed540e9be41e0e81bdcf2633d8b4540e5306726cdac19ca3a

Contents?: true

Size: 772 Bytes

Versions: 37

Compression:

Stored size: 772 Bytes

Contents

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

if RUBY_PLATFORM =~ /darwin/
  notification :terminal_notifier, app_name: 'pycall.gem ::', activate: 'com.googlecode.iTerm2'
end

directories %w(config lib spec).select { |d|
  Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")
}

watch('config/Guardfile') do
  UI.info "Exiting guard because config changed"
  exit 0
end

guard :rspec, cmd: 'bin/rspec' do
  require "guard/rspec/dsl"
  dsl = Guard::RSpec::Dsl.new(self)

  # RSpec files
  rspec = dsl.rspec
  watch(rspec.spec_helper) { rspec.spec_dir }
  watch(rspec.spec_support) { rspec.spec_dir }
  watch(rspec.spec_files)

  # Ruby files
  ruby = dsl.ruby
  dsl.watch_spec_files_for(ruby.lib_files)
  watch('lib/pycall/libpython.rb') { 'spec' }
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
pycall-1.5.1 config/Guardfile
pycall-1.5.0 config/Guardfile
pycall-1.4.2 config/Guardfile
pycall-1.4.1 config/Guardfile
pycall-1.4.0 config/Guardfile
pycall-1.3.1 config/Guardfile
pycall-1.3.0 config/Guardfile
pycall-1.3.0.dev config/Guardfile
pycall-1.2.1 config/Guardfile
pycall-1.2.0 config/Guardfile
pycall-1.2.0.beta1 config/Guardfile
pycall-1.1.0.rc1 config/Guardfile
pycall-1.0.3 config/Guardfile
pycall-1.0.2-x86-mingw32 config/Guardfile
pycall-1.0.2-x64-mingw32 config/Guardfile
pycall-1.0.2 config/Guardfile
pycall-1.0.1-x86-mingw32 config/Guardfile
pycall-1.0.1-x64-mingw32 config/Guardfile
pycall-1.0.1 config/Guardfile
pycall-1.0.0 config/Guardfile