firstdraft / appdev_template

A Rails template for generating homework projects
0 stars 1 forks source link

Render local file if path_to_file method fails #42

Closed jelaniwoods closed 5 years ago

jelaniwoods commented 5 years ago

The template sets ENV = :prod which forces the render_file method to open files, like initializers, from the master branch. If the file doesn't exist on master, open-uri will throw an error and stop the generation.

image

I've changed a conditional to read from a local version of the file if the read from the master branch fails.

raghubetina commented 5 years ago

@jelaniwoods LGTM!

LoganDSPrice commented 5 years ago

NOICE LGTM