rmuh 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1402565d209f6d72ba95d6a17e3c7ff90d430af7
4
- data.tar.gz: 489ef149e3f6493d091ff186363a2ad87c629853
3
+ metadata.gz: 69f5513f7e23bbbaf90c0dd18008f78192b6257a
4
+ data.tar.gz: e3922a5813134a9a6288eb988961c708a864a3cb
5
5
  SHA512:
6
- metadata.gz: 2e9605c2296450f13b81f47a5a15875ad7be86a201583ce85662e2ccbb5d1164448009c24925d3925506324ce1cfc45fb8e9206b979f389a46d8e2aade188da0
7
- data.tar.gz: 5c7399bccdb65f7e8e1e6f7aa9ae58b3e5d6385d5d79d8ea6d244bf32e9a6ec4d52dc89df2473cd2b701531ced7fcfa7d494c6e112a5b84046e848234a7b7da9
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
- [![Build Status](https://img.shields.io/travis/theckman/rmuh/master.svg)](https://travis-ci.org/theckman/rpt-ruby)
3
+ [![Build Status](https://img.shields.io/travis/theckman/rmuh/master.svg)](https://travis-ci.org/theckman/rmuh)
4
4
  [![MIT License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://tldrlegal.com/license/mit-license)
5
5
  [![RubyGems :: RMuh Gem Version](http://img.shields.io/gem/v/rmuh.svg)](https://rubygems.org/gems/rmuh)
6
6
  [![Coveralls Coverage](https://img.shields.io/coveralls/theckman/rmuh/master.svg)](https://coveralls.io/r/theckman/rmuh)
7
7
  [![Code Climate](https://img.shields.io/codeclimate/github/theckman/rmuh.svg)](https://codeclimate.com/github/theckman/rmuh)
8
8
  [![Gemnasium](https://img.shields.io/gemnasium/theckman/rmuh.svg)](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
- Here is a quick overview of how to use this functionality:
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'
@@ -6,7 +6,7 @@
6
6
  module RMuh
7
7
  VERSION_MAJ ||= 0
8
8
  VERSION_MIN ||= 3
9
- VERSION_REV ||= 0
9
+ VERSION_REV ||= 1
10
10
 
11
11
  VERSION ||= "#{VERSION_MAJ}.#{VERSION_MIN}.#{VERSION_REV}"
12
12
  end
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.0
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-06-15 00:00:00.000000000 Z
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