Skip to content

Commit

Permalink
fix: eject generator failing due to undefined source_location method (#…
Browse files Browse the repository at this point in the history
…3566)

* fix: reject generator failing due to undefined source_location

* fix: better source locator

* fix: revert const if statement

* Update eject_generator.rb
  • Loading branch information
Eddayy authored Jan 7, 2025
1 parent 149ce5e commit 85cbb77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/generators/avo/eject_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def eject_component(component_to_eject = options[:component], confirmation: true
# Get the component path for both, the rb and erb files
rb, erb = if (component_constant = component_to_eject.safe_constantize)
# If component is a constant, find the source location
source_location = component_constant.source_location
source_location = component_constant.identifier

[source_location, source_location.gsub(".rb", ".html.erb")]
else
Expand Down

0 comments on commit 85cbb77

Please sign in to comment.