From 8b1643dc3014be0e07b7e95761c0a07948719d19 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Fri, 8 Dec 2023 13:40:29 -0300 Subject: [PATCH] "bundle exec twenty" works --- twenty-cli/lib/twenty/cli.rb | 2 +- twenty-cli/twenty-cli.gemspec | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/twenty-cli/lib/twenty/cli.rb b/twenty-cli/lib/twenty/cli.rb index d104d3f..5759e37 100644 --- a/twenty-cli/lib/twenty/cli.rb +++ b/twenty-cli/lib/twenty/cli.rb @@ -1,3 +1,3 @@ module Twenty - require_relative "twenty/command" + require_relative "command" end diff --git a/twenty-cli/twenty-cli.gemspec b/twenty-cli/twenty-cli.gemspec index 4007afb..5e842e7 100644 --- a/twenty-cli/twenty-cli.gemspec +++ b/twenty-cli/twenty-cli.gemspec @@ -11,6 +11,7 @@ Gem::Specification.new do |gem| gem.require_paths = ["lib"] gem.summary = "twenty: command-line interface" gem.description = gem.summary + gem.executables = "twenty" gem.add_runtime_dependency "cmd.rb", "~> 0.2" gem.add_development_dependency "test-unit", "~> 3.5.7" gem.add_development_dependency "yard", "~> 0.9"