rmuh 0.1.1 → 0.2.0

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: 30ef3e334ceafe184c943d093a03f4becb0a1804
4
- data.tar.gz: 31d4e5579ff1d8795d9127998f1ad7ebf6d99bab
3
+ metadata.gz: 2afa8d700e33ca03886586afae8cb833e30e6848
4
+ data.tar.gz: 1812d02b9537370a22db998fcee1f6936e5b39c8
5
5
  SHA512:
6
- metadata.gz: 5680165553bbc2c0850951d8af5d4caecb429bf96311fbac032022321896a39d9e16cc53614ca8306782ee34646d5b784734c9bbd922853b600edc93ec891ecb
7
- data.tar.gz: 82091429b14322776b8b2cff1d2f76dea07aacc94f794a39f8754e9a013a032494c1cef1ad85be1e1fe68d7ec985ab4d7a101ca432a265595b3c8311b4f602c4
6
+ metadata.gz: 6956e30ee23bc0d415276f263e5bac85d629781e272e082dd694f3af23bf3f2ba0deeb2a7fe6749dfcae8a398b572d9d540276575956bbe6a996bfd0cd0b7d05
7
+ data.tar.gz: 5c3ce06cd77a60f70045da346fb340df5b4455290d5f92d07cbd6ca1f4969358801b20436fa4e143d459ee23a993918117bb5b8ff0ca551ee2e0ad1ef31e1635
data/README.md CHANGED
@@ -2,8 +2,10 @@ RMuh
2
2
  ====
3
3
  [![Build Status](https://img.shields.io/travis/theckman/rmuh/master.svg)](https://travis-ci.org/theckman/rpt-ruby)
4
4
  [![MIT Licensed](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://tldrlegal.com/license/mit-license)
5
+ [![RubyGems](http://img.shields.io/gem/v/rmuh.svg)](https://rubygems.org/gems/rmuh)
5
6
  [![Coveralls Coverage](https://img.shields.io/coveralls/theckman/rmuh/master.svg)](https://coveralls.io/r/theckman/rmuh)
6
7
  [![Code Climate](https://img.shields.io/codeclimate/github/theckman/rmuh.svg)](https://codeclimate.com/github/theckman/rmuh)
8
+ [![Gemnasium](https://img.shields.io/gemnasium/theckman/rmuh.svg)](https://gemnasium.com/theckman/rmuh)
7
9
 
8
10
  **RMuh**, a play on the name ArmA (Armed Assault), is a Ruby library for
9
11
  interacting with ArmA 2 servers (specifically tested against Operation
@@ -0,0 +1,16 @@
1
+ # -*- coding: UTF-8 -*-
2
+
3
+ require 'rmuh/serverstats/base'
4
+
5
+ module RMuh
6
+ module ServerStats
7
+ # TODO: Documentation
8
+ #
9
+ class Advanced < RMuh::ServerStats::Base
10
+ def method_missing(method, *args, &block)
11
+ super unless stats.key?(method)
12
+ stats[method]
13
+ end
14
+ end
15
+ end
16
+ end
@@ -3,8 +3,8 @@
3
3
  #
4
4
  module RMuh
5
5
  VERSION_MAJ ||= 0
6
- VERSION_MIN ||= 1
7
- VERSION_REV ||= 1
6
+ VERSION_MIN ||= 2
7
+ VERSION_REV ||= 0
8
8
 
9
9
  VERSION ||= "#{VERSION_MAJ}.#{VERSION_MIN}.#{VERSION_REV}"
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rmuh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Heckman
@@ -231,6 +231,7 @@ files:
231
231
  - lib/rmuh/rpt/log/util/unitedoperations.rb
232
232
  - lib/rmuh/rpt/log/util/unitedoperationslog.rb
233
233
  - lib/rmuh/rpt/log/util/unitedoperationsrpt.rb
234
+ - lib/rmuh/serverstats/advanced.rb
234
235
  - lib/rmuh/serverstats/base.rb
235
236
  - lib/rmuh/version.rb
236
237
  - rmuh.gemspec