diff options
author | soartec-lab <info@soartec-lab.work> | 2019-04-12 00:36:42 +0900 |
---|---|---|
committer | soartec-lab <info@soartec-lab.work> | 2019-04-12 00:39:45 +0900 |
commit | d7c1ecf54038034f95c9a9ad09ea2ad646b6a9ea (patch) | |
tree | 43ce2b679aa590aabbc3016468e9b88d49e0b824 /guides | |
parent | 45511fa8b20c621e2cf193ddaeb7d6fbe8432fea (diff) | |
download | rails-d7c1ecf54038034f95c9a9ad09ea2ad646b6a9ea.tar.gz rails-d7c1ecf54038034f95c9a9ad09ea2ad646b6a9ea.tar.bz2 rails-d7c1ecf54038034f95c9a9ad09ea2ad646b6a9ea.zip |
Code is enclosed by code block [skip ci]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/engines.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index 5446c1c188..f6987df5e9 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -1528,4 +1528,6 @@ These are the available configuration hooks. They do not hook into any particula ### Example -`config.before_configuration { puts 'I am called before any initializers' }` +```ruby +config.before_configuration { puts 'I am called before any initializers' } +``` |