I want that when I make changes in factories, I see them in rails console without restarting all console.
I\'ve found some lines and tested them with a poor understandin
I was using Faker. See the diff of changes that solved the problem:
# factories/building.rb, address is a string
- address Faker::Address.street_address
+ address { Faker::Address.street_address }
# factories/user.rb, email is a string
- email Faker::Internet.email
+ email { Faker::Internet.email }
And then FactoryGirl.reload
works.