README.markdown in vk-0.0.2 vs README.markdown in vk-0.0.3

- old
+ new

@@ -1,9 +1,15 @@ # Vk: API wrapper for vk.com Vk is a wrapper for vk.com API +* [Documentation](http://rubydoc.info/gems/vk) +* [Source](http://github.com/alsemyonov/vk) +* [Issues](http://github.com/alsemyonov/vk/issues) +* [Wiki](http://github.com/alsemyonov/vk/wiki) +* [Documentation for unreleased gem version](http://rubydoc.info/github/alsemyonov/vk) + ## Installation $ gem install vk ## Usage @@ -30,20 +36,21 @@ profiles = vk.get_profiles([123, 456, 789], fields: %w('has_mobile')) puts profiles # [{uid: 1234, ..., has_mobile: 1}] ### Usage with object oriented DSL -Currently implemented classes: {Vk::User}, {Vk::City}, {Vk::Country}. +Currently implemented classes: {Vk::User}, {Vk::City}, {Vk::Country}, {Vk::Post}. user = Vk::User.find 12345 user # #<Vk::User:12345 @attributes={first_name: 'Ivan', last_name: 'Ivanov', uid: 12345}> user.first_name # 'Ivan' user.last_name # 'Ivanov' user.name # 'Ivan Ivanov' user.city # #<Vk::City:1 @attributes={name: 'Moscow', cid: 1}> user.country # #<Vk::Country:1 @attributes={name: 'Russia', cid: 1}> user.friends # [#<Vk::User:1 @attributes={first_name: "Pavel", last_name: "Durov", uid: 1}>, ...] user.friends.first.city # #<Vk::City:1 @attributes={name: 'Moscow', cid: 1}> + user.posts.first # #<Vk::Post:1_123 @attributes={text: 'Preved!11'}> ## License MIT License. © [Alexander Semyonov](http://al.semyonov.us/), <al@semyonov.us>, 2011