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.
2 parents c4fcb63 + 4937e32 commit e39047fCopy full SHA for e39047f
CHANGELOG.md
@@ -1,6 +1,7 @@
1
## Next Version
2
3
* Accept -e and --environment options for `rails console`.
4
+* Add `config/secrets.yml` file to watched for changes by default. Issue #289.
5
6
## 1.1.3
7
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