twenty-cli 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e329d8e32ffab71034b7d841e2c79e28931efa0ab0c2693b3cff3ec8053f9694
4
- data.tar.gz: 0f10118952d860eff2d883ab19d96b726d643bfb7ae681a65911f1c30b744016
3
+ metadata.gz: 2ddd7347f34054ffc640e5056a8792c407290ed4b2e5b1626fc6c687e07caffc
4
+ data.tar.gz: f5f0456b7eac937c56c87168a1dd04ba038717b8bfda38b7df3a5c8260e7a2fe
5
5
  SHA512:
6
- metadata.gz: 1d7160399c9a90ddd1056545a307b6a825d358d3ef4d386bbe70c1c3496903b29da457270472d808a8490550a8310f98bd819aeab0fa0a8c810195ee5e0634e6
7
- data.tar.gz: 3391ee8ca66a754cfe66aaa7a596397de3074ca05e439d47b5876423958e76b6dce3bce1ba15a52922d5f79ef3f2d68503cde2c6e34bdf58a0f29ecc22ad5859
6
+ metadata.gz: 8dddfed7c17d92613184ad2a9be51342b6f48310c5c5353452e1c352ec8db97977cf2cf69b2ccf70a81201d77b670d64867de171a1166611d4c642ed1caa6b24
7
+ data.tar.gz: 339b5c6cebbb64f2c818e7eee63821d3f15e952ee1ec146aca940ef057338f05a658c30f775b059da4fe83ca65bbdb22863388ba386c7456a6fa297681f8bae7
data/bin/twenty CHANGED
File without changes
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
5
+ require File.join(libdir, "twenty-cli")
6
+
7
+ ##
8
+ # main
9
+ def main(argv)
10
+ Twenty::Command::Connect.new(argv).run
11
+ end
12
+ main(ARGV)
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
5
+ require File.join(libdir, "twenty-cli")
6
+
7
+ ##
8
+ # main
9
+ def main(argv)
10
+ Twenty::Command::Console.new(argv).run
11
+ end
12
+ main(ARGV)
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
5
+ require File.join(libdir, "twenty-cli")
6
+
7
+ ##
8
+ # main
9
+ def main(argv)
10
+ Twenty::Command::Disconnect.new(argv).run
11
+ end
12
+ main(ARGV)
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
5
+ require File.join(libdir, "twenty-cli")
6
+
7
+ ##
8
+ # main
9
+ def main(argv)
10
+ Twenty::Command::Down.new(argv).run
11
+ end
12
+ main(ARGV)
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
5
+ require File.join(libdir, "twenty-cli")
6
+
7
+ ##
8
+ # main
9
+ def main(argv)
10
+ Twenty::Command::Migrate.new(argv).run
11
+ end
12
+ main(ARGV)
data/libexec/twenty/up ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
5
+ require File.join(libdir, "twenty-cli")
6
+
7
+ ##
8
+ # main
9
+ def main(argv)
10
+ Twenty::Command::Up.new(argv).run
11
+ end
12
+ main(ARGV)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twenty-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - '0x1eef'
@@ -115,6 +115,12 @@ files:
115
115
  - "./lib/twenty-cli/command/mixin/sqlite_mixin.rb"
116
116
  - "./lib/twenty-cli/command/up.rb"
117
117
  - "./lib/twenty-cli/libexec.rb"
118
+ - "./libexec/twenty/connect"
119
+ - "./libexec/twenty/console"
120
+ - "./libexec/twenty/disconnect"
121
+ - "./libexec/twenty/down"
122
+ - "./libexec/twenty/migrate"
123
+ - "./libexec/twenty/up"
118
124
  - bin/twenty
119
125
  homepage: https://github.com/0x1eef/twenty#readme
120
126
  licenses: