tweetabout 0.0.3 → 0.0.4
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.
- data/README.md +8 -5
- data/lib/tweetabout.rb +1 -1
- data/lib/tweetabout/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -10,11 +10,11 @@ The words are are ordered list of the most frequently tweeted words based on the
|
|
10
10
|
|
11
11
|
## Installation
|
12
12
|
|
13
|
-
|
13
|
+
gem install tweetabout
|
14
14
|
|
15
15
|
### Gemfile
|
16
16
|
|
17
|
-
|
17
|
+
gem "tweetabout", "~> 0.0.3"
|
18
18
|
|
19
19
|
### Dependencies
|
20
20
|
|
@@ -22,9 +22,12 @@ The words are are ordered list of the most frequently tweeted words based on the
|
|
22
22
|
|
23
23
|
## TODO
|
24
24
|
|
25
|
-
*
|
26
|
-
|
27
|
-
*
|
25
|
+
* Test coverage. Actually this a requirement before using this gem in production. And I know I am a bad Rubyist for not writing tests first but I promise to get better.
|
26
|
+
* Make this Gem useful. Right now it returns a list of all words, it might be interesting to strip out articles and pronouns from the list, that might actually give you an interesting insight into a person's interests.
|
27
|
+
* More accurate response messages. Currently empty arrays get returned for three reasons:
|
28
|
+
1. Twitter api is down (404)
|
29
|
+
2. User does not exist (404)
|
30
|
+
3. Client has exceeded API limit (400). This happens when > 150 requests are made within an hour.
|
28
31
|
|
29
32
|
##Twitter API
|
30
33
|
|
data/lib/tweetabout.rb
CHANGED
data/lib/tweetabout/version.rb
CHANGED