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

Support generating views in rails engine #357

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

sullerandras
Copy link

I ran into the issue that was described in #147. This PR seems to solve the issue.

Possible related issues:

I got uninitialized constant error:
```
/Users/andras/projects/scenic/lib/generators/scenic/view/view_generator.rb:99:in `previous_definition': uninitialized constant Scenic::Definition (NameError)
```

The requires fixed the issue for me.
@@ -80,7 +81,7 @@ def file_name
end

def views_directory_path
@views_directory_path ||= Rails.root.join("db", "views")
@views_directory_path ||= (Rails.root || Pathname.new(Dir.pwd)).join("db", "views")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Metrics/LineLength: Line is too long. [91/80]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant