This repository has been archived on 2020-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
counter/lib/generators/component_generator.rb

26 lines
631 B
Ruby

# Generator for building scaffolding frontend components.
# e.g. rails g component NAME
class ComponentGenerator < Rails::Generators::Base
argument :component_name, required: true, desc: 'Component name, e.g: button'
def create_css_file
create_file "#{component_path}/#{component_name}.css"
end
def create_js_file
create_file "#{component_path}/#{component_name}.js" do
"import \"./#{component_name}.css\";\n"
end
end
def create_view_file
create_file "#{component_path}/_#{component_name}.html.erb"
end
protected
def component_path
"frontend/components/#{component_name}"
end
end