twiterator 0.2.2 → 0.2.3
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.
- checksums.yaml +4 -4
- data/README.md +2 -1
- data/lib/twiterator.rb +2 -0
- data/lib/twiterator/version.rb +1 -1
- data/twiterator.gemspec +0 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37ba6fbf5a80a7c8ede6b84d53a90f2911dca9da
|
4
|
+
data.tar.gz: 4a62b011a1cc884dacda5a9b1a5bbf26a441fc6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c79945da7d79e49405b774c6f0a38ca7b78507c75302b85f630ba03c2a814e8f8abe53f3fc87c54564c5d8d2698103c574b7397163191db9184be97abc52b6b4
|
7
|
+
data.tar.gz: f12121be16be2cd73368ef993979c1a563a6427cfea46eff111d804a62a86413f621b984a5e0dec124829ac86f1b566e39b98102bda474a488c3b44e4fdbbe00
|
data/README.md
CHANGED
@@ -5,6 +5,7 @@ Welcome to Twiterator, a simple CLI browser for the popular social networking si
|
|
5
5
|
## Features
|
6
6
|
|
7
7
|
As of version 0.2.1, a user is able to:
|
8
|
+
|
8
9
|
-Input a twitter handle
|
9
10
|
-Search for a user if they don't know the handle. Spaces and misspellings are allowed.
|
10
11
|
-Search will display user's handle & display name, along with bio.
|
@@ -18,7 +19,7 @@ As of version 0.2.1, a user is able to:
|
|
18
19
|
|
19
20
|
## Usage
|
20
21
|
|
21
|
-
To use Twiterator,
|
22
|
+
To use Twiterator, just type "twiterator" into your terminal, and follow whatever instructions show up on the screen.
|
22
23
|
|
23
24
|
## Contributing
|
24
25
|
|
data/lib/twiterator.rb
CHANGED
@@ -4,6 +4,8 @@ require_relative "twiterator/twiterator-cli.rb"
|
|
4
4
|
require_relative "twiterator/user.rb"
|
5
5
|
require_relative "twiterator/verification.rb"
|
6
6
|
require_relative "twiterator/version"
|
7
|
+
require 'open-uri'
|
8
|
+
require 'nokogiri'
|
7
9
|
|
8
10
|
module Twiterator
|
9
11
|
# Your code goes here...
|
data/lib/twiterator/version.rb
CHANGED
data/twiterator.gemspec
CHANGED