spigoter 0.4.0 → 0.4.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/exe/spigoter +2 -1
- data/lib/spigoter/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79747edbd2518cf8206729e3f1221eae117e3344
|
4
|
+
data.tar.gz: 3b4f36ce4c493d8e030da9aedb875b1ce0572a91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24ebd04806a392d645ae7f10756046f8cb3ca4a18a43422a168ebfeaec9b46484db62bb2c2b9416d276263f3c349c5bdcb377b6612bedd3003ad5868df3c8638
|
7
|
+
data.tar.gz: 43719e4f984dae43f0cb7ef4c5a53b27a0870f399e14a65b17699fc9d86258123fe9aa8b6aeef2a53f5491f13294bd27090dc3573d0812c53ef525ba3599c36a
|
data/exe/spigoter
CHANGED
@@ -7,6 +7,7 @@ options = {}
|
|
7
7
|
|
8
8
|
subtext = <<HELP
|
9
9
|
COMMAND are:
|
10
|
+
init creates the spigoter.yml and plugins.yml files
|
10
11
|
start [options] starts the server
|
11
12
|
update [options] updates plugin
|
12
13
|
compile [options] compiles spigot and replaces as the current version
|
@@ -27,7 +28,7 @@ end
|
|
27
28
|
subcommands = {
|
28
29
|
'init' => OptionParser.new do |opts|
|
29
30
|
opts.banner = "Usage: #{File.basename $PROGRAM_NAME} init"
|
30
|
-
opts.separator "\nCreates a new spigoter.yml for you"
|
31
|
+
opts.separator "\nCreates a new spigoter.yml and plugins.yml for you"
|
31
32
|
end,
|
32
33
|
'start' => OptionParser.new do |opts|
|
33
34
|
opts.banner = "Usage: #{File.basename $PROGRAM_NAME} start"
|
data/lib/spigoter/version.rb
CHANGED