pattern_generator icon indicating copy to clipboard operation
pattern_generator copied to clipboard

The missing Rails generator for patterns

Results 2 pattern_generator issues
Sort by recently updated
recently updated
newest added

e.g. ``` rails generate service find_match --initialize=user ``` should generate ``` class FindMatchService attr_reader :user def initialize(user) @user = user end ... ```

help wanted

Not everybody agrees on how to write patterns. We want to allow users to customize the way templates are generated. Currently, Pattern Generator makes many assumptions when generating patterns. For...

help wanted