rmuh 0.2.1 → 0.2.2
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 +1 -1
- data/README.md +6 -6
- data/Rakefile +3 -6
- data/examples/basic_parsing.rb +41 -0
- data/examples/basic_serverstats.rb +22 -0
- data/examples/serverstats_advanced.rb +26 -0
- data/examples/serverstats_cache.rb +35 -0
- data/lib/rmuh/serverstats/advanced.rb +2 -2
- data/lib/rmuh/serverstats/base.rb +2 -0
- data/lib/rmuh/version.rb +1 -1
- data/spec/examples_spec.rb +46 -0
- data/spec/rmuh_rpt_log_fetch_spec.rb +17 -15
- data/spec/rmuh_rpt_log_parsers_base_spec.rb +30 -7
- data/spec/rmuh_rpt_log_parsers_unitedoperationslog_spec.rb +66 -60
- data/spec/rmuh_rpt_log_parsers_unitedoperationsrpt_spec.rb +21 -20
- data/spec/rmuh_rpt_log_util_unitedoperations_spec.rb +51 -51
- data/spec/rmuh_rpt_log_util_unitedoperationslog_spec.rb +25 -21
- data/spec/rmuh_rpt_log_util_unitedoperationsrpt_spec.rb +68 -63
- data/spec/rmuh_rpt_spec.rb +8 -8
- data/spec/rmuh_serverstats_base_spec.rb +39 -23
- metadata +7 -1
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.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Heckman
|
@@ -223,6 +223,10 @@ files:
|
|
223
223
|
- LICENSE
|
224
224
|
- README.md
|
225
225
|
- Rakefile
|
226
|
+
- examples/basic_parsing.rb
|
227
|
+
- examples/basic_serverstats.rb
|
228
|
+
- examples/serverstats_advanced.rb
|
229
|
+
- examples/serverstats_cache.rb
|
226
230
|
- lib/rmuh.rb
|
227
231
|
- lib/rmuh/rpt.rb
|
228
232
|
- lib/rmuh/rpt/log/fetch.rb
|
@@ -236,6 +240,7 @@ files:
|
|
236
240
|
- lib/rmuh/serverstats/base.rb
|
237
241
|
- lib/rmuh/version.rb
|
238
242
|
- rmuh.gemspec
|
243
|
+
- spec/examples_spec.rb
|
239
244
|
- spec/files/content-length.txt
|
240
245
|
- spec/helpers/spec_helper.rb
|
241
246
|
- spec/helpers/unitedoperations.rb
|
@@ -273,6 +278,7 @@ signing_key:
|
|
273
278
|
specification_version: 4
|
274
279
|
summary: ArmA 2 Ruby Library
|
275
280
|
test_files:
|
281
|
+
- spec/examples_spec.rb
|
276
282
|
- spec/files/content-length.txt
|
277
283
|
- spec/helpers/spec_helper.rb
|
278
284
|
- spec/helpers/unitedoperations.rb
|