1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00

Revert "Remove redundant const_missing class method."

This reverts commit df5471078c.
This commit is contained in:
Daniel Colson 2020-06-19 10:26:11 -04:00
parent aecc8a87ee
commit 4b06427cf4
No known key found for this signature in database
GPG key ID: 88A364BBE77B1353

View file

@ -17,5 +17,9 @@ module FactoryBot
def send(symbol, *args, &block)
__send__(symbol, *args, &block)
end
def self.const_missing(name)
::Object.const_get(name)
end
end
end