5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-29 18:46:08 +00:00
panel/config/spring.rb

17 lines
397 B
Ruby
Raw Normal View History

2019-03-26 15:32:20 +00:00
# frozen_string_literal: true
# https://github.com/thoughtbot/ember-cli-rails/issues/479#issuecomment-241302961
Spring::Watcher::Listen.class_eval do
def base_directories
2019-03-26 15:32:20 +00:00
%w[app config db lib test vendor]
.uniq.map { |path| Pathname.new(File.join(root, path)) }
end
end
2019-03-26 15:32:20 +00:00
%w[
2018-01-02 17:19:25 +00:00
.ruby-version
.rbenv-vars
tmp/restart.txt
tmp/caching-dev.txt
2019-03-26 15:32:20 +00:00
].each { |path| Spring.watch(path) }