diff --git a/CHANGELOG.md b/CHANGELOG.md index 48b1277..96e5ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ -## [0.0.7] - 2024-12-09 +## [0.0.8] - 2024-12-09 +- Make sure to require pathname when needed - Upgrade to newer foobara gem with detached entity concept ## [0.0.6] - 2024-12-01 diff --git a/Gemfile.lock b/Gemfile.lock index 364595f..f032d05 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - foobara-http-command-connector (0.0.7) + foobara-http-command-connector (0.0.8) foobara GEM @@ -34,7 +34,7 @@ GEM ffi (1.17.0-x86_64-darwin) ffi (1.17.0-x86_64-linux-gnu) ffi (1.17.0-x86_64-linux-musl) - foob (0.0.6) + foob (0.0.7) foobara foobara-autocrud-generator foobara-command-generator @@ -48,7 +48,7 @@ GEM foobara-remote-imports-generator foobara-resque-connector-generator foobara-resque-scheduler-connector-generator - foobara-sh-cli-connector + foobara-sh-cli-connector (~> 0.0.10) foobara-sh-cli-connector-generator foobara-type-generator foobara-typescript-react-command-form-generator @@ -99,7 +99,7 @@ GEM foobara-rubocop-rules (0.0.5) rubocop rubocop-rspec - foobara-sh-cli-connector (0.0.9) + foobara-sh-cli-connector (0.0.10) foobara foobara-sh-cli-connector-generator (0.0.2) foobara diff --git a/src/http/commands/help/presenter.rb b/src/http/commands/help/presenter.rb index 1fc9fcc..f2498c1 100644 --- a/src/http/commands/help/presenter.rb +++ b/src/http/commands/help/presenter.rb @@ -1,3 +1,5 @@ +require "pathname" + require_relative "presenter/command" require_relative "presenter/entity" require_relative "presenter/error" diff --git a/version.rb b/version.rb index 0ea9f96..5365347 100644 --- a/version.rb +++ b/version.rb @@ -1,5 +1,5 @@ module Foobara module HttpCommandConnector - VERSION = "0.0.7".freeze + VERSION = "0.0.8".freeze end end