twenty-cli 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e329d8e32ffab71034b7d841e2c79e28931efa0ab0c2693b3cff3ec8053f9694
4
- data.tar.gz: 0f10118952d860eff2d883ab19d96b726d643bfb7ae681a65911f1c30b744016
3
+ metadata.gz: 6d59a06af56e3e4c245c4a1b3ba369b4f45bb06215ab8111ce38bb3cc2a1fd06
4
+ data.tar.gz: 4ea3495569ba3bd441159ee32dbf594fec335716aa5e5e8063a020468e71d139
5
5
  SHA512:
6
- metadata.gz: 1d7160399c9a90ddd1056545a307b6a825d358d3ef4d386bbe70c1c3496903b29da457270472d808a8490550a8310f98bd819aeab0fa0a8c810195ee5e0634e6
7
- data.tar.gz: 3391ee8ca66a754cfe66aaa7a596397de3074ca05e439d47b5876423958e76b6dce3bce1ba15a52922d5f79ef3f2d68503cde2c6e34bdf58a0f29ecc22ad5859
6
+ metadata.gz: c664338cbd3c22dc07ae690fedf41612534a7a7bc8bed2b1d007633d24de01261ea40162e34470d2caeb5554e1c8bcd9f2f6c7d610ff59682e603bdfa4af11d0
7
+ data.tar.gz: 1fa508325b16669d8c552537dd50f81bdf6e0949600dcd0fdafec27d0196501584fb1e5dd6ccd03887c9f042656444514504d91a83d7448552165569f7010971
@@ -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.1.1
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: