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 +4 -4
- data/libexec/twenty/connect +12 -0
- data/libexec/twenty/console +12 -0
- data/libexec/twenty/disconnect +12 -0
- data/libexec/twenty/down +12 -0
- data/libexec/twenty/migrate +12 -0
- data/libexec/twenty/up +12 -0
- metadata +7 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d59a06af56e3e4c245c4a1b3ba369b4f45bb06215ab8111ce38bb3cc2a1fd06
|
4
|
+
data.tar.gz: 4ea3495569ba3bd441159ee32dbf594fec335716aa5e5e8063a020468e71d139
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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)
|
data/libexec/twenty/down
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::Migrate.new(argv).run
|
11
|
+
end
|
12
|
+
main(ARGV)
|
data/libexec/twenty/up
ADDED
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.
|
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:
|