mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 12:36:21 +00:00
16 lines
397 B
Ruby
16 lines
397 B
Ruby
# frozen_string_literal: true
|
|
|
|
# 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
|
|
|
|
%w[
|
|
.ruby-version
|
|
.rbenv-vars
|
|
tmp/restart.txt
|
|
tmp/caching-dev.txt
|
|
].each { |path| Spring.watch(path) }
|