instructure/lti_template_builder

View on GitHub
lib/lti_template_builder/recipes/bootstrap_sass/template.erb

Summary

Maintainability
Test Coverage
# TODO: This should be done differently!!!!

remove_file "app/assets/stylesheets/#{name}/application.css"
create_file "app/assets/stylesheets/#{name}/application.scss" do <<-'RUBY'
@import "bootstrap";
RUBY
end

inject_into_file "lib/#{name}.rb", before: "module" do <<-'RUBY'
require "bootstrap-sass"

RUBY
end