File tree Expand file tree Collapse file tree 4 files changed +3
-1
lines changed
Expand file tree Collapse file tree 4 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 2323 ruby-version : ${{ matrix.ruby-version }}
2424 bundler-cache : true
2525 - name : Run RuboCop
26- run : bundle exec rubocop -c .rubocop.yml
26+ run : bundle exec rubocop
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ def run!
2626
2727 FileUtils . copy_entry template_dir , app_dir
2828 FileUtils . rm_rf ( "#{ app_dir } /.git" )
29+ FileUtils . mv ( "#{ app_dir } /.rubocop_template.yml" , "#{ app_dir } /.rubocop.yml" )
2930 parse_erb_files
3031 display "Pliny app created. To start, run:"
3132 display "cd #{ app_dir } && bin/setup"
File renamed without changes.
Original file line number Diff line number Diff line change 2121 @gen . run!
2222 assert File . exist? ( "./foobar" )
2323 assert File . exist? ( "./foobar/Gemfile" )
24+ assert File . exist? ( "./foobar/.rubocop.yml" )
2425 end
2526
2627 it "deletes the .git from it" do
You can’t perform that action at this time.
0 commit comments