From 91f26f0a781f4334ec7291ffd49b802ac771cef9 Mon Sep 17 00:00:00 2001 From: Jason Meller Date: Wed, 13 Sep 2023 20:24:44 -0400 Subject: [PATCH 1/2] Fix missing extensions on Procfile generation --- lib/install/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install/install.rb b/lib/install/install.rb index 321bbf7..b241602 100644 --- a/lib/install/install.rb +++ b/lib/install/install.rb @@ -47,7 +47,7 @@ append_to_file "Procfile.dev", "css: #{bundler_run_cmd} build:css --watch\n" else say "Add default Procfile.dev" - copy_file "#{__dir__}/#{using_bun? ? "Procfile_for_bun" : "Procfile_for_node"}", "Procfile.dev" + copy_file "#{__dir__}/#{using_bun? ? "Procfile_for_bun.dev" : "Procfile_for_node.dev"}", "Procfile.dev" say "Ensure foreman is installed" run "gem install foreman" From 70049cfbbcab82256b621c753052586a11b1f376 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Thu, 14 Sep 2023 21:53:57 +0000 Subject: [PATCH 2/2] Prepare for 1.3.2 --- Gemfile.lock | 2 +- lib/cssbundling/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 702e3e7..a321ca4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - cssbundling-rails (1.3.1) + cssbundling-rails (1.3.2) railties (>= 6.0.0) GEM diff --git a/lib/cssbundling/version.rb b/lib/cssbundling/version.rb index ddf163a..e5b8519 100644 --- a/lib/cssbundling/version.rb +++ b/lib/cssbundling/version.rb @@ -1,3 +1,3 @@ module Cssbundling - VERSION = "1.3.1" + VERSION = "1.3.2" end