You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When spinning up a new app - we get the Is this an API only app? (y/N) prompt. In the case of answering N we still end up with spec_helper.rb config which has SmashingDoc references in it:
config.after(:each, type: :controller) do SmashingDocs.run!(request, response, true) end
This will cause rspec to throw a error: NameError: uninitialized constant SmashingDocs
The text was updated successfully, but these errors were encountered:
woolsox
added
the
Minor Bug
Boxcar generates a working Rails app, but there is some flaw in the process
label
Jun 7, 2018
@dkniffin It looks like SmashingDocs isn't being installed, for any type of app. Some of the config is added via this line, but I don't see the gem getting added anywhere.
And no, I don't think SmashingDocs is useful for a full stack app. Not unless it also has some API endpoints.
When spinning up a new app - we get the
Is this an API only app? (y/N)
prompt. In the case of answeringN
we still end up withspec_helper.rb
config which hasSmashingDoc
references in it:config.after(:each, type: :controller) do
SmashingDocs.run!(request, response, true)
end
This will cause
rspec
to throw a error:NameError: uninitialized constant SmashingDocs
The text was updated successfully, but these errors were encountered: