mwo 0.1.2 → 1.0.0

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +37 -23
  3. data/lib/mwo/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb68eb96c8add37059bd8a233fa3a18f4ee5fc00
4
- data.tar.gz: af75a9f9c7a2f639bd2be4abcca688d9e84d3ac9
3
+ metadata.gz: 4002e45141dd108f59d549667bc8e90891c3f5df
4
+ data.tar.gz: 661eb861fe5929428c063b83b888ce39686c27b2
5
5
  SHA512:
6
- metadata.gz: 1006fa1ad6c0b6ff59d10ac4f45554ce805e60f6f9a1953cc82cddc880c29e77126771e442faa265454e1baa6d71e7458ab90f1a014b24b3ff8f7f3b5b1cd0a5
7
- data.tar.gz: ddb4f561bc089091ddceb5821255f806630fca7eb6c30179fe11b166a5fb00e29be9c3f3fc72198a2d5c82ec2ae39b460ad155e21e109a14c37b00e3c14177a3
6
+ metadata.gz: d54e9d8bb47d1714669dda4ce461b3161e8c8c708035099388eed7c9223e9f023e0e3786a07379320e72e94a2177f10e0f444e1a4bda165b63b3894eb4daa01b
7
+ data.tar.gz: e9f6c114a9b40e58051b79776cd6500ca8039814c5e61b3bc80a14b080bc4e6e98079ed718669c41ec712e80f3b66b74d0bbac6099324e385824cb5cd21a1b4e
data/README.md CHANGED
@@ -26,48 +26,51 @@ Or install it yourself as:
26
26
 
27
27
  Get a list of all weapons
28
28
 
29
- - [x] MWO::Weapon.all
30
- - [x] MWO::Weapon.all_raw # if you want the json response from the api
29
+ ```ruby
30
+ MWO::Weapon.all
31
+ MWO::Weapon.all_raw # if you want the json response from the api
32
+ ```
31
33
 
32
34
  Scoped weapons
33
35
 
34
36
  ### By Category
35
37
 
36
- - [x] MWO::Weapon.ballistic
37
- - [x] MWO::Weapon.energy
38
- - [x] MWO::Weapon.missile
38
+ ```ruby
39
+ MWO::Weapon.ballistic
40
+ MWO::Weapon.energy
41
+ MWO::Weapon.missile
42
+ ```
39
43
 
40
44
  ### By Faction
41
45
 
42
- - [x] MWO::Weapon.clan
43
- - [x] MWO::Weapon.innersphere
46
+ ```ruby
47
+ MWO::Weapon.clan
48
+ MWO::Weapon.innersphere
49
+ ```
44
50
 
45
51
  ### Mechs
46
52
 
47
53
  List all Mechs
48
54
 
49
- - [x] MWO::Mech.all
50
- - [x] MWO::Mech.all_raw # if you want the json response from the api
55
+ ```ruby
56
+ MWO::Mech.all
57
+ MWO::Mech.all_raw # if you want the json response from the api
58
+ ```
51
59
 
52
60
  ##### Lists the Mech ID with their corresponding variants
53
61
 
54
- - [x] MWO::Mech.dictionary # Lists the Mech ID with their corresponding variants
55
-
56
- #### By Faction
57
-
58
- - [ ] MWO::Mech.inner_sphere
59
- - [ ] MWO::Mech.clan
62
+ ```ruby
63
+ MWO::Mech.dictionary # Lists the Mech ID with their corresponding variants
64
+ ```
60
65
 
61
66
  #### By Weight class
62
67
 
63
- - [x] MWO::Mech.lights
64
- - [x] MWO::Mech.mediums
65
- - [x] MWO::Mech.heavies
66
- - [x] MWO::Mech.assaults
67
-
68
- ### Omniparts
69
-
70
- - [ ] MWO::Omniparts.all
68
+ ```ruby
69
+ MWO::Mech.lights
70
+ MWO::Mech.mediums
71
+ MWO::Mech.heavies
72
+ MWO::Mech.assaults
73
+ ```
71
74
 
72
75
  ## Contributing
73
76
 
@@ -76,3 +79,14 @@ List all Mechs
76
79
  3. Commit your changes (`git commit -am 'Add some feature'`)
77
80
  4. Push to the branch (`git push origin my-new-feature`)
78
81
  5. Create a new Pull Request
82
+
83
+ ### Author
84
+
85
+ Florante "Buddy" Magsipoc
86
+
87
+ [@keikun17](https://www.twitter.com/keikun17)
88
+
89
+
90
+ ### License
91
+
92
+ Licensed under the MIT license (see MIT-LICENSE file)
@@ -1,3 +1,3 @@
1
1
  module Mwo
2
- VERSION = "0.1.2"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mwo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Buddy Magsipoc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-27 00:00:00.000000000 Z
11
+ date: 2014-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler