We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0fb6f commit 4937e32Copy full SHA for 4937e32
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## Next release
2
+
3
+* Add `config/secrets.yml` file to watched for changes by default. Issue #289.
4
5
## 1.1.3
6
7
* The `rails runner` command no longer passes environment switches to
lib/spring/application.rb
@@ -108,6 +108,9 @@ def preload
108
if defined?(Rails) && Rails.application
109
watcher.add Rails.application.paths["config/initializers"]
110
watcher.add Rails.application.paths["config/database"]
111
+ if secrets_path = Rails.application.paths["config/secrets"]
112
+ watcher.add secrets_path
113
+ end
114
end
115
116
0 commit comments