Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update railtie to set Oaken as the fixture replacement #80

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions lib/oaken/railtie.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
class Oaken::Railtie < Rails::Railtie
initializer "oaken.lookup_paths" do
Oaken.lookup_paths << "db/seeds/#{Rails.env}"
module Oaken
class Railtie < Rails::Railtie
config.app_generators do
_1.test_framework _1.test_framework, fixture: false
end
kaspth marked this conversation as resolved.
Show resolved Hide resolved

initializer "oaken.lookup_paths" do
Oaken.lookup_paths << "db/seeds/#{Rails.env}"
end
end
end