rmuh 0.3.0 → 0.3.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/{.travis.yml → .travis.yml.disabled} +0 -0
- data/README.md +19 -2
- data/lib/rmuh/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69f5513f7e23bbbaf90c0dd18008f78192b6257a
|
|
4
|
+
data.tar.gz: e3922a5813134a9a6288eb988961c708a864a3cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d860078e0873961230d357f8ae858d370d298af57e95f542016c3a0e8ae3e9418676c3d2c0c03628166e2fdb982a2b2e038ad73dfd9a03cd5a067d780f0b184d
|
|
7
|
+
data.tar.gz: 260f54f2bef5217cc2d0e9316ee32abae596d64234e4181b601685c7e41f5712c5cb6bca6e4397f18039615bec7ab02468848fae4fcc72f2dd2d6354debeda47
|
|
File without changes
|
data/README.md
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
RMuh
|
|
2
2
|
====
|
|
3
|
-
[](https://travis-ci.org/theckman/
|
|
3
|
+
[](https://travis-ci.org/theckman/rmuh)
|
|
4
4
|
[](https://tldrlegal.com/license/mit-license)
|
|
5
5
|
[](https://rubygems.org/gems/rmuh)
|
|
6
6
|
[](https://coveralls.io/r/theckman/rmuh)
|
|
7
7
|
[](https://codeclimate.com/github/theckman/rmuh)
|
|
8
8
|
[](https://gemnasium.com/theckman/rmuh)
|
|
9
9
|
|
|
10
|
+
**NOTICE**: UnitedOperations has dropped support for ArmA 2. So as of now, this
|
|
11
|
+
project should be considered no longer maintained. Due to this tests are also
|
|
12
|
+
failing, so Travis CI has been disabled by renaming the `.travis.yml` file to
|
|
13
|
+
`.travis.yml.disabled`
|
|
14
|
+
|
|
10
15
|
**RMuh**, a play on the name ArmA (Armed Assault), is a Ruby library for
|
|
11
16
|
interacting with ArmA 2 servers (specifically tested against Operation
|
|
12
17
|
Arrowhead servers).
|
|
@@ -142,7 +147,19 @@ live statistics from the server. This includes current map, mission, play list,
|
|
|
142
147
|
and others. Deep down this just uses the GameSpy protocol to get the
|
|
143
148
|
information directly from the server.
|
|
144
149
|
|
|
145
|
-
|
|
150
|
+
### Future Functionality Note
|
|
151
|
+
|
|
152
|
+
As of ArmA 2: Operation Arrowhead version `1.63` this is no longer
|
|
153
|
+
working. This is due to GameSpy being shut down, and removed from ArmA 2 by
|
|
154
|
+
Bohemia Interactive as part of
|
|
155
|
+
[ArmA 2:OA Update 1.63](http://www.arma2.com/latest-news/arma-2-operation-arrowhead-update-163).
|
|
156
|
+
Beyond the [Bohemia Interactive server list](http://master.bistudio.com/)
|
|
157
|
+
there are no known alternatives to getting this information at the time of writing.
|
|
158
|
+
|
|
159
|
+
*well fuck...*
|
|
160
|
+
|
|
161
|
+
So, if you have an A2:OA server older than `1.63` (e.g., version `1.62`),
|
|
162
|
+
here is a quick overview of how to use this functionality:
|
|
146
163
|
|
|
147
164
|
```Ruby
|
|
148
165
|
require 'rmuh/serverstats/base'
|
data/lib/rmuh/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rmuh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Heckman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -179,7 +179,7 @@ files:
|
|
|
179
179
|
- ".gitignore"
|
|
180
180
|
- ".rspec"
|
|
181
181
|
- ".rubocop.yml"
|
|
182
|
-
- ".travis.yml"
|
|
182
|
+
- ".travis.yml.disabled"
|
|
183
183
|
- Gemfile
|
|
184
184
|
- LICENSE
|
|
185
185
|
- README.md
|