Skip to content

Commit bda6f53

Browse files
committed
Fix namespace
1 parent 291ea90 commit bda6f53

22 files changed

Lines changed: 22 additions & 22 deletions

lib/ruby_llm/docker/build_image.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module Docker
7373
#
7474
# @see Docker::Image.build_from_dir
7575
# @since 0.1.0
76-
BUILD_IMAGE_DEFINITION = ToolForge.define(:build_image) do
76+
BUILD_IMAGE_DEFINITION = ::ToolForge.define(:build_image) do
7777
description 'Build a Docker image'
7878

7979
param :dockerfile,

lib/ruby_llm/docker/copy_to_container.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module Docker
6363
#
6464
# @see Docker::Container#archive_in_stream
6565
# @since 0.1.0
66-
COPY_TO_CONTAINER_DEFINITION = ToolForge.define(:copy_to_container) do
66+
COPY_TO_CONTAINER_DEFINITION = ::ToolForge.define(:copy_to_container) do
6767
description 'Copy a file or directory from the local filesystem into a running Docker container. ' \
6868
'The source path is on the local machine, and the destination path is inside the container.'
6969

lib/ruby_llm/docker/create_container.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module Docker
6161
#
6262
# @see Docker::Container.create
6363
# @since 0.1.0
64-
CREATE_CONTAINER_DEFINITION = ToolForge.define(:create_container) do
64+
CREATE_CONTAINER_DEFINITION = ::ToolForge.define(:create_container) do
6565
description 'Create a Docker container'
6666

6767
param :image,

lib/ruby_llm/docker/create_network.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ module Docker
7474
#
7575
# @see Docker::Network.create
7676
# @since 0.1.0
77-
CREATE_NETWORK_DEFINITION = ToolForge.define(:create_network) do
77+
CREATE_NETWORK_DEFINITION = ::ToolForge.define(:create_network) do
7878
description 'Create a Docker network'
7979

8080
param :name,

lib/ruby_llm/docker/create_volume.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module Docker
7373
#
7474
# @see Docker::Volume.create
7575
# @since 0.1.0
76-
CREATE_VOLUME_DEFINITION = ToolForge.define(:create_volume) do
76+
CREATE_VOLUME_DEFINITION = ::ToolForge.define(:create_volume) do
7777
description 'Create a Docker volume'
7878

7979
param :name,

lib/ruby_llm/docker/exec_container.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module Docker
7373
#
7474
# @see Docker::Container#exec
7575
# @since 0.1.0
76-
EXEC_CONTAINER_DEFINITION = ToolForge.define(:exec_container) do
76+
EXEC_CONTAINER_DEFINITION = ::ToolForge.define(:exec_container) do
7777
description 'Execute a command inside a running Docker container. ' \
7878
'WARNING: This provides arbitrary command execution within the container. ' \
7979
'Ensure proper security measures are in place.'

lib/ruby_llm/docker/fetch_container_logs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module Docker
5757
#
5858
# @see Docker::Container#logs
5959
# @since 0.1.0
60-
FETCH_CONTAINER_LOGS_DEFINITION = ToolForge.define(:fetch_container_logs) do
60+
FETCH_CONTAINER_LOGS_DEFINITION = ::ToolForge.define(:fetch_container_logs) do
6161
description 'Fetch Docker container logs'
6262

6363
param :id,

lib/ruby_llm/docker/list_containers.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module Docker
4646
#
4747
# @see Docker::Container.all
4848
# @since 0.1.0
49-
LIST_CONTAINERS_DEFINITION = ToolForge.define(:list_containers) do
49+
LIST_CONTAINERS_DEFINITION = ::ToolForge.define(:list_containers) do
5050
description 'List Docker containers'
5151

5252
param :all,

lib/ruby_llm/docker/list_images.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module Docker
4545
#
4646
# @see Docker::Image.all
4747
# @since 0.1.0
48-
LIST_IMAGES_DEFINITION = ToolForge.define(:list_images) do
48+
LIST_IMAGES_DEFINITION = ::ToolForge.define(:list_images) do
4949
description 'List Docker images'
5050

5151
execute do

lib/ruby_llm/docker/list_networks.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module Docker
4646
#
4747
# @see Docker::Network.all
4848
# @since 0.1.0
49-
LIST_NETWORKS_DEFINITION = ToolForge.define(:list_networks) do
49+
LIST_NETWORKS_DEFINITION = ::ToolForge.define(:list_networks) do
5050
description 'List Docker networks'
5151

5252
execute do

0 commit comments

Comments
 (0)