seize 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -21
  3. data/lib/seize/version.rb +1 -1
  4. metadata +2 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 408616cb5ed07be80cd80c980ac8fbfc735eccab
4
- data.tar.gz: 4ac3ce0d1caa06e258ffa04a606f2f77901078df
3
+ metadata.gz: fe82bb078f38a31bb772589aa1d3c66f95a458be
4
+ data.tar.gz: 2cb7e1bd558801a134cae920bc19bb277eaf77dc
5
5
  SHA512:
6
- metadata.gz: 6b4cb4be0fb31ee8e5948633e54e781cb0f8904c4ad6850bdb7fc7a136e61b81bddf4d74224ebc8193f4fc8eeb78a44095607845eb9772535786dc99a4f20b64
7
- data.tar.gz: 06cf2daf938f74dcd6dcb12e5ec229471ea56b18c4f572d03a2f45c255cc81752d7292d824581dcede698cd6fece446f604242d49b295555358e465da974c750
6
+ metadata.gz: faa8f67ec474aff7f4f6ae122a7eb03f996c5d822f7ffb6af55cabc7a9b65558a703bcea484b30ea79c6ef791c428f123fd47f123db66fed9955190572c4e075
7
+ data.tar.gz: ef595dc914661cedb2b40ea828ac1e7d2a2a3c70fd7d04ce95fef6f8af3607b4a5ba27a0d8e89830b236a9335560b7244546506d0cb5049df33bdc457d4b58b4
data/README.md CHANGED
@@ -1,45 +1,37 @@
1
- # Twinge
1
+ # Seize
2
2
 
3
- <img src='https://cloud.githubusercontent.com/assets/9126138/13517238/c1ca3650-e17e-11e5-8171-56d1c3cc924c.png'>
3
+ <img src='https://cloud.githubusercontent.com/assets/9126138/16828648/ef17e534-494e-11e6-9716-ff95d2e40d67.png'>
4
4
 
5
- Twinge is a CLI for [twitch.tv](http://twitch.tv). It can do a few things, including listing the top channels that are currently live and checking the status of a single stream. Twinge also provides a simple interface into [livestreamer](https://github.com/chrippa/livestreamer) so that launching a stream from the terminal is quick and easy.
5
+ Seize is a CLI for [twitch.tv](http://twitch.tv). It can do a few things, including listing the top channels that are currently live and checking the status of a single stream. Seize also provides a simple interface into [livestreamer](https://github.com/chrippa/livestreamer) so that launching a stream from the terminal is quick and easy.
6
6
 
7
7
  ## Example Usage
8
8
 
9
- `$ twinge list` will list the top streams currently live on twitch.tv
9
+ `$ seize list` will list the top streams currently live on twitch.tv
10
10
 
11
- By default Twinge will list the 25 most popular streams. This number can be increased or decreased with an optional number argument `-n`.
11
+ By default Seize will list the 25 most popular streams. This number can be increased or decreased with an optional number argument `--number`.
12
12
 
13
- `$ twinge list -n 50`
13
+ `$ seize list --number 50`
14
14
 
15
- Twinge also provides a shortcut to easily launch a stream with livestreamer.
15
+ Seize also provides a shortcut to easily launch a stream with livestreamer.
16
16
 
17
17
  ```
18
- $ twinge watch nl_kripp
18
+ $ seize watch tsm_doublelift
19
19
  ```
20
20
 
21
- Twinge can also check the status of a current channel.
21
+ Seize can also check the status of a current channel.
22
22
 
23
23
  ```
24
- $ twinge check nl_kripp
24
+ $ seize check nl_kripp
25
25
  nl_kripp is playing Hearthstone: Heroes of Warcraft with 13,539 viewers.
26
26
  ```
27
27
 
28
28
  ## Installation
29
29
 
30
- With pip:
30
+ Seize requires [livestreamer](http://docs.livestreamer.io/) in order to watch streams.
31
31
 
32
32
  ```
33
- pip install twinge
34
- ```
35
-
36
- Manually:
37
-
38
- ```
39
- cd ~
40
- git clone https://github.com/scwood/twinge
41
- cd twinge
42
- python setup.py install
33
+ pip install livestreamer
34
+ gem install seize
43
35
  ```
44
36
 
45
37
  ## License
data/lib/seize/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Seize
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Spencer Wood
@@ -39,8 +39,7 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: 2.0.0
41
41
  description: 'A CLI for Twitch.tv. Full documentation: https://github.com/scwood/seize'
42
- email:
43
- - spencercwood@gmail.com
42
+ email: spencercwood@gmail.com
44
43
  executables:
45
44
  - seize
46
45
  extensions: []