1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00

Unclosed String literal in README

[ci skip]
This commit is contained in:
Akira Matsuda 2018-09-26 18:12:49 +09:00 committed by Daniel Colson
parent 85b1bccdaf
commit dc6c6012c4

View file

@ -68,7 +68,7 @@ It is possible to use this setting to share factories from a gem:
```rb ```rb
class MyEngine < ::Rails::Engine class MyEngine < ::Rails::Engine
config.factory_bot.definition_file_paths = config.factory_bot.definition_file_paths =
File.expand_path('../factories, __FILE__) if defined?(FactoryBotRails) File.expand_path('../factories', __FILE__) if defined?(FactoryBotRails)
end end
``` ```