README.md in mwo-0.1.2 vs README.md in mwo-1.0.0
- old
+ new
@@ -24,55 +24,69 @@
### Weapons
Get a list of all weapons
-- [x] MWO::Weapon.all
-- [x] MWO::Weapon.all_raw # if you want the json response from the api
+```ruby
+MWO::Weapon.all
+MWO::Weapon.all_raw # if you want the json response from the api
+```
Scoped weapons
### By Category
-- [x] MWO::Weapon.ballistic
-- [x] MWO::Weapon.energy
-- [x] MWO::Weapon.missile
+```ruby
+MWO::Weapon.ballistic
+MWO::Weapon.energy
+MWO::Weapon.missile
+```
### By Faction
-- [x] MWO::Weapon.clan
-- [x] MWO::Weapon.innersphere
+```ruby
+MWO::Weapon.clan
+MWO::Weapon.innersphere
+```
### Mechs
List all Mechs
-- [x] MWO::Mech.all
-- [x] MWO::Mech.all_raw # if you want the json response from the api
+```ruby
+MWO::Mech.all
+MWO::Mech.all_raw # if you want the json response from the api
+```
##### Lists the Mech ID with their corresponding variants
-- [x] MWO::Mech.dictionary # Lists the Mech ID with their corresponding variants
+```ruby
+MWO::Mech.dictionary # Lists the Mech ID with their corresponding variants
+```
-#### By Faction
-
-- [ ] MWO::Mech.inner_sphere
-- [ ] MWO::Mech.clan
-
#### By Weight class
-- [x] MWO::Mech.lights
-- [x] MWO::Mech.mediums
-- [x] MWO::Mech.heavies
-- [x] MWO::Mech.assaults
+```ruby
+MWO::Mech.lights
+MWO::Mech.mediums
+MWO::Mech.heavies
+MWO::Mech.assaults
+```
-### Omniparts
-
-- [ ] MWO::Omniparts.all
-
## Contributing
1. Fork it ( https://github.com/[my-github-username]/mwo/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
+
+### Author
+
+Florante "Buddy" Magsipoc
+
+[@keikun17](https://www.twitter.com/keikun17)
+
+
+### License
+
+Licensed under the MIT license (see MIT-LICENSE file)