From 8781dbc4fd02c3ecedef3a061733dac749e4625e Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Fri, 8 Dec 2023 10:57:57 -0300 Subject: [PATCH] Add twenty-cli/ --- Gemfile => twenty-cli/Gemfile | 0 {bin => twenty-cli/bin}/twenty | 0 {lib => twenty-cli/lib}/twenty.rb | 0 {lib => twenty-cli/lib}/twenty/command.rb | 0 {lib => twenty-cli/lib}/twenty/command/connect.rb | 0 {lib => twenty-cli/lib}/twenty/command/disconnect.rb | 0 {lib => twenty-cli/lib}/twenty/command/down.rb | 0 {lib => twenty-cli/lib}/twenty/command/up.rb | 0 {lib => twenty-cli/lib}/twenty/libexec.rb | 0 {libexec => twenty-cli/libexec}/twenty/connect | 0 {libexec => twenty-cli/libexec}/twenty/disconnect | 0 {libexec => twenty-cli/libexec}/twenty/down | 0 {libexec => twenty-cli/libexec}/twenty/up | 0 twenty.gemspec => twenty-cli/twenty-cli.gemspec | 4 ++-- 14 files changed, 2 insertions(+), 2 deletions(-) rename Gemfile => twenty-cli/Gemfile (100%) rename {bin => twenty-cli/bin}/twenty (100%) rename {lib => twenty-cli/lib}/twenty.rb (100%) rename {lib => twenty-cli/lib}/twenty/command.rb (100%) rename {lib => twenty-cli/lib}/twenty/command/connect.rb (100%) rename {lib => twenty-cli/lib}/twenty/command/disconnect.rb (100%) rename {lib => twenty-cli/lib}/twenty/command/down.rb (100%) rename {lib => twenty-cli/lib}/twenty/command/up.rb (100%) rename {lib => twenty-cli/lib}/twenty/libexec.rb (100%) rename {libexec => twenty-cli/libexec}/twenty/connect (100%) rename {libexec => twenty-cli/libexec}/twenty/disconnect (100%) rename {libexec => twenty-cli/libexec}/twenty/down (100%) rename {libexec => twenty-cli/libexec}/twenty/up (100%) rename twenty.gemspec => twenty-cli/twenty-cli.gemspec (89%) diff --git a/Gemfile b/twenty-cli/Gemfile similarity index 100% rename from Gemfile rename to twenty-cli/Gemfile diff --git a/bin/twenty b/twenty-cli/bin/twenty similarity index 100% rename from bin/twenty rename to twenty-cli/bin/twenty diff --git a/lib/twenty.rb b/twenty-cli/lib/twenty.rb similarity index 100% rename from lib/twenty.rb rename to twenty-cli/lib/twenty.rb diff --git a/lib/twenty/command.rb b/twenty-cli/lib/twenty/command.rb similarity index 100% rename from lib/twenty/command.rb rename to twenty-cli/lib/twenty/command.rb diff --git a/lib/twenty/command/connect.rb b/twenty-cli/lib/twenty/command/connect.rb similarity index 100% rename from lib/twenty/command/connect.rb rename to twenty-cli/lib/twenty/command/connect.rb diff --git a/lib/twenty/command/disconnect.rb b/twenty-cli/lib/twenty/command/disconnect.rb similarity index 100% rename from lib/twenty/command/disconnect.rb rename to twenty-cli/lib/twenty/command/disconnect.rb diff --git a/lib/twenty/command/down.rb b/twenty-cli/lib/twenty/command/down.rb similarity index 100% rename from lib/twenty/command/down.rb rename to twenty-cli/lib/twenty/command/down.rb diff --git a/lib/twenty/command/up.rb b/twenty-cli/lib/twenty/command/up.rb similarity index 100% rename from lib/twenty/command/up.rb rename to twenty-cli/lib/twenty/command/up.rb diff --git a/lib/twenty/libexec.rb b/twenty-cli/lib/twenty/libexec.rb similarity index 100% rename from lib/twenty/libexec.rb rename to twenty-cli/lib/twenty/libexec.rb diff --git a/libexec/twenty/connect b/twenty-cli/libexec/twenty/connect similarity index 100% rename from libexec/twenty/connect rename to twenty-cli/libexec/twenty/connect diff --git a/libexec/twenty/disconnect b/twenty-cli/libexec/twenty/disconnect similarity index 100% rename from libexec/twenty/disconnect rename to twenty-cli/libexec/twenty/disconnect diff --git a/libexec/twenty/down b/twenty-cli/libexec/twenty/down similarity index 100% rename from libexec/twenty/down rename to twenty-cli/libexec/twenty/down diff --git a/libexec/twenty/up b/twenty-cli/libexec/twenty/up similarity index 100% rename from libexec/twenty/up rename to twenty-cli/libexec/twenty/up diff --git a/twenty.gemspec b/twenty-cli/twenty-cli.gemspec similarity index 89% rename from twenty.gemspec rename to twenty-cli/twenty-cli.gemspec index 45a955a..4007afb 100644 --- a/twenty.gemspec +++ b/twenty-cli/twenty-cli.gemspec @@ -1,7 +1,7 @@ # frozen_string_literal: true Gem::Specification.new do |gem| - gem.name = "twenty" + gem.name = "twenty-cli" gem.authors = ["0x1eef"] gem.email = ["0x1eef@protonmail.com"] gem.homepage = "https://github.com/0x1eef/twenty#readme" @@ -9,7 +9,7 @@ Gem::Specification.new do |gem| gem.licenses = ["0BSD"] gem.files = `git ls-files`.split($/) gem.require_paths = ["lib"] - gem.summary = "Local project management" + gem.summary = "twenty: command-line interface" gem.description = gem.summary gem.add_runtime_dependency "cmd.rb", "~> 0.2" gem.add_development_dependency "test-unit", "~> 3.5.7"