mirror of
https://github.com/ngrok/ngrok-api-ruby.git
synced 2026-05-17 16:50:40 +00:00
19 lines
380 B
Ruby
19 lines
380 B
Ruby
# Code generated for API Clients. DO NOT EDIT.
|
|
|
|
rspec_options = {
|
|
version: 1,
|
|
all_after_pass: false,
|
|
all_on_start: false
|
|
}
|
|
|
|
guard 'rspec', rspec_options do
|
|
watch(%r{^spec/.+_spec\.rb$})
|
|
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
|
watch('spec/spec_helper.rb') { "spec" }
|
|
end
|
|
|
|
guard 'bundler' do
|
|
watch('Gemfile')
|
|
watch(/^.+\.gemspec/)
|
|
end
|