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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b954c89136a4b3f4908468dd6191770e76f78c78
4
- data.tar.gz: 8861934b5d1b2b3d64530be239a7855f61d528e9
3
+ metadata.gz: 37ba6fbf5a80a7c8ede6b84d53a90f2911dca9da
4
+ data.tar.gz: 4a62b011a1cc884dacda5a9b1a5bbf26a441fc6f
5
5
  SHA512:
6
- metadata.gz: 35ee1d207a81c808ab014d6e38d7f67b705505eb525106b10e7f55326f104512df85d8dd0848e0b4a4c7fe24f70d87e2beae46ec8cc68306cfbe39160c62aced
7
- data.tar.gz: 13ba478644d93ebfea40754e13df6991fdeea7a6af21f3f1eef9420a89009c9627e3d10e49250db061d13a0bac022830ed183400ab2dba936dafcbe569bc3515
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, run bin/console and follow whatever instructions show up on the screen.
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
 
@@ -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...
@@ -1,3 +1,3 @@
1
1
  module Twiterator
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
@@ -2,8 +2,6 @@
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'twiterator/version'
5
- require 'open-uri'
6
- require 'nokogiri'
7
5
 
8
6
  Gem::Specification.new do |spec|
9
7
  spec.name = "twiterator"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twiterator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Glover