diff --git a/Gemfile.lock b/Gemfile.lock index 80e7c9a..53efde9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - hooks-ruby (0.6.3) + hooks-ruby (0.6.4) dry-schema (~> 1.14, >= 1.14.1) grape (~> 2.3) puma (~> 6.6) diff --git a/lib/hooks/core/config_loader.rb b/lib/hooks/core/config_loader.rb index 3d1d19a..eb7ade1 100644 --- a/lib/hooks/core/config_loader.rb +++ b/lib/hooks/core/config_loader.rb @@ -17,7 +17,6 @@ class ConfigLoader health_path: "/health", version_path: "/version", environment: ENV.fetch("RACK_ENV", "production"), - production: true, endpoints_dir: "./config/endpoints", use_catchall_route: false, normalize_headers: true, diff --git a/lib/hooks/version.rb b/lib/hooks/version.rb index 440859a..852e11c 100644 --- a/lib/hooks/version.rb +++ b/lib/hooks/version.rb @@ -4,5 +4,5 @@ module Hooks # Current version of the Hooks webhook framework # @return [String] The version string following semantic versioning - VERSION = "0.6.3".freeze + VERSION = "0.6.4".freeze end diff --git a/spec/unit/lib/hooks/core/config_loader_spec.rb b/spec/unit/lib/hooks/core/config_loader_spec.rb index 4ee39ab..25a629a 100644 --- a/spec/unit/lib/hooks/core/config_loader_spec.rb +++ b/spec/unit/lib/hooks/core/config_loader_spec.rb @@ -16,7 +16,6 @@ health_path: "/health", version_path: "/version", environment: "production", - production: true, endpoints_dir: "./config/endpoints", use_catchall_route: false, normalize_headers: true,