README.md in twitter-4.3.0 vs README.md in twitter-4.4.0
- old
+ new
@@ -300,10 +300,24 @@
```ruby
Twitter.user("gem")
Twitter.user(213747670)
```
+**Fetch a cursored list of followers with profile details (by screen name or user ID, or by implict authenticated user)**
+
+```ruby
+Twitter.followers("gem")
+Twitter.followers(213747670)
+Twitter.followers
+```
+**Fetch a cursored list of friends with profile details (by screen name or user ID, or by implict authenticated user)**
+
+```ruby
+Twitter.friends("gem")
+Twitter.friends(213747670)
+Twitter.friends
+```
**Fetch the timeline of Tweets by a user**
```ruby
Twitter.user_timeline("gem")
Twitter.user_timeline(213747670)
@@ -355,13 +369,14 @@
Here are some fun facts about this library:
* It is implemented in just 2,000 lines of Ruby code
* With over 4,000 lines of specs, the spec-to-code ratio is over 2:1
-* The spec suite contains over 600 examples and runs in under 2 seconds
+* The spec suite contains 700 examples and runs in about 2 seconds
* It has 100% C0 code coverage (the tests execute every line of
source code at least once)
-* It is comprehensive: you can request all documented Twitter REST API resources (over 100 resources)
+* It is comprehensive: you can request all documented Twitter REST API
+ resources (over 100 resources)
* This gem works on every major Ruby implementation, including JRuby and
Rubinius
* The first version was released on November 26, 2006
* This gem has just three runtime dependencies: `faraday`, `multi_json`, and
`simple_oauth`