gsd-cli 0.1.17 → 0.1.18
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/lib/cli.rb +2 -2
- data/lib/game_template.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d1a31f90f342471685a6e85aaa123b9eb064520916ab8a6abf3d78e0259f132
|
4
|
+
data.tar.gz: c196300ae58823463d79f68bb6500073dc5b042d2b7877dcb60d6bb2295f699c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15f562f04ac811106aa30bd48d4bae526525bc752711b2870f4d01a25eeb8053154b69d04c209a25e5aa935ef2f71f156ed5f993511656fd3ba914ed66671303
|
7
|
+
data.tar.gz: 15ffe083278801437e0e18c125816416c5d83fe815391fb27b7bbfc6a16d8194f29af4e9924c219b1082f8c06b692722bbc30a9b23c03b9d3aefcfdc7b3b8ab2
|
data/lib/cli.rb
CHANGED
@@ -31,7 +31,7 @@ end
|
|
31
31
|
@games = userdata
|
32
32
|
|
33
33
|
program :name, "gsd-cli"
|
34
|
-
program :version, "0.1.
|
34
|
+
program :version, "0.1.18"
|
35
35
|
program :description, "A cli tool to deploy & manage dedicated game servers on Linux"
|
36
36
|
|
37
37
|
command :install do |c|
|
@@ -56,7 +56,7 @@ command :run do |c|
|
|
56
56
|
c.description = "Runs an installed dedicated game server as a new process. This command is used by the daemon and is not designed to be run manually."
|
57
57
|
c.option "--path STRING", String, "Path that the game server will be installed to."
|
58
58
|
c.action do |args, options|
|
59
|
-
GameTemplate.new(@games[args.first()]
|
59
|
+
GameTemplate.new(@games[args.first()]).run(options.path)
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
data/lib/game_template.rb
CHANGED