minecraft-server 0.0.1.pre.32 → 0.0.1.pre.33
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 +8 -8
- data/README.md +10 -10
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZWRkZTIyOTZmNzczZmU0OTc3OTYxNWU5NzUyYWNhYjI4MGE4ZmY1OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZTg1NDYzNTVjZmM4NWRmZGNjMmUzMTQxMGRhNDliNWU5MzcyYWRlNQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ODk3MGZjZmE1NTVmMzA5NDc2MjQ3NjA2ZThmMzQ4NjAzZTYzM2U5NWEwMDY1
|
10
|
+
ODY5MmI2YmIzODc3N2U5ZWY5ZGIxMDM4ODMwYWMxZTA4YTkwZmIzNGJmOTA4
|
11
|
+
Y2ZhMWJkMjZhZDgzMGRiMjVkYThhOTRlN2Q0MjlhNTAxZTY1ZDQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MjhlODE0OWVmNzMwZGQ0NmM2MWQzMDk4MWQ2YzEzYzFmZGRjYTlkNjM3OTk3
|
14
|
+
ZDM2ZDc5ZjE2MTIxMmVhYzMwNDI4MjhjOTM3ODZkZWJkMTYxYjEwZTA2MDU2
|
15
|
+
NGE0YWVlOWQxYjU3OGViOTFjODhjZDFmMDFkYTkwNGU0YmMyZjY=
|
data/README.md
CHANGED
@@ -10,29 +10,29 @@
|
|
10
10
|
[](https://codeclimate.com/github/MinecraftRuby/minecraft-server)
|
11
11
|
[](https://codeclimate.com/github/MinecraftRuby/minecraft-server)
|
12
12
|
|
13
|
-
|
13
|
+
Minecraft Server written purely in Ruby, allowing for possible implementation of the Bukkit API, Minecraft Forge API, Sponge API, and Spout API.
|
14
14
|
|
15
15
|
## Installation
|
16
16
|
|
17
|
-
|
17
|
+
Install it using RubyGems:
|
18
18
|
|
19
|
-
gem
|
19
|
+
$ gem install minecraft-server
|
20
20
|
|
21
|
-
|
21
|
+
## Usage
|
22
22
|
|
23
|
-
|
23
|
+
There are two valid executables that are added to your $PATH at installation, 'minecraft-server' and 'minecraft-server-console'.
|
24
24
|
|
25
|
-
|
25
|
+
The two executables accomplish the same basic thing however they accomplish it differently.
|
26
26
|
|
27
|
-
|
27
|
+
The 'minecraft-server' executable is a simple server executable that cannot be controlled from the command-line.
|
28
28
|
|
29
|
-
|
29
|
+
The 'minecraft-server-console' executable starts the server and attempts to create a console interface for control from the command line. This executable is unstable and is not recommended for use.
|
30
30
|
|
31
|
-
|
31
|
+
To start the server run the executable of your choice from the directory you wish to run the server from, the directory where you wish all the server files to be stored.
|
32
32
|
|
33
33
|
## Contributing
|
34
34
|
|
35
|
-
1. Fork it ( https://github.com/
|
35
|
+
1. Fork it ( https://github.com/MinecraftRuby/minecraft-server/fork )
|
36
36
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
37
37
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
38
38
|
4. Push to the branch (`git push origin my-new-feature`)
|