5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-03 14:37:03 +00:00
panel/config/spring.rb
2019-08-29 14:54:39 -03:00

18 lines
411 B
Ruby

# frozen_string_literal: true
# Ignorar los sitios Jekyll
# https://github.com/thoughtbot/ember-cli-rails/issues/479#issuecomment-241302961
Spring::Watcher::Listen.class_eval do
def base_directories
%w[app config db lib test vendor]
.uniq.map { |path| Pathname.new(File.join(root, path)) }
end
end
Spring.watch(
'.ruby-version',
'.rbenv-vars',
'tmp/restart.txt',
'tmp/caching-dev.txt'
)