twitchy 0.1.2 → 0.1.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: 60a8a5369e9c83ab88f9a7527dae9b906c3c830e
4
- data.tar.gz: ed8542b21759fb053bf364b08d5766aff0e8634b
3
+ metadata.gz: b9eeb3372b1a30aae373980ee6adae8cfbf8b00d
4
+ data.tar.gz: 187918c6ca742a9565e79de0c1be10179aec992c
5
5
  SHA512:
6
- metadata.gz: ee02aca4c1c6aa7082857c04401290b5d5f05fefee8095a76f02073d4978b81e0f23413698af47b1376d3285c93f4ce1c0ea23d01cb1a4188ba51bbaba903440
7
- data.tar.gz: 96ab0109e04712ff00e07e9fbeaf72fa9c5fbb574bcc1ec9a16e8351495d3ed660b09ecc72813073daa542bd2b95ed44e4ac43ed6e2532be62e6aafa6782e07e
6
+ metadata.gz: 8dde5f155f28ac695ef40af025ba83abca5813079286ab95ed1385ee9c1798852c805a61d52453d90bf9b05034b3bd76fefea56ea5af1c4e5bc7919fb979c2c8
7
+ data.tar.gz: e919b9b25cfeb2936175d8db62a6fd4f3a8cc2ea4b7a91bbf38174935f47bfc73ab2b0c82090f84cba3b4588d8a5c3014f1a7148254141a0b6735bec29510cf7
data/README.md CHANGED
@@ -18,7 +18,7 @@ Usage: twitchy [options] [channel ..]
18
18
  ```
19
19
  ## Dependencies
20
20
 
21
- Requires [`livestreamer`](https://github.com/chrippa/livestreamer) (obviously), and currently the [`colorize`](https://github.com/fazibear/colorize) gem.
21
+ Requires [`livestreamer`](https://github.com/chrippa/livestreamer) (obviously), and currently the [`colorize`](https://github.com/fazibear/colorize) and [`launchy`](http://www.copiousfreetime.org/projects/launchy) gems.
22
22
 
23
23
  ## Installation
24
24
 
@@ -27,6 +27,6 @@ Requires [`livestreamer`](https://github.com/chrippa/livestreamer) (obviously),
27
27
  ## Todo
28
28
 
29
29
  ~~I plan on gemifying this soon.~~ Also, a lot of usage is unclear (pagination in
30
- archives, quality options, https://github.com/fazibear/colorizeetc).
30
+ archives, quality options, etc).
31
31
 
32
32
  I have greatly reduced API requests from earlier versions, but I'm always keeping an eye out for ways to bring the number of those calls down further. There's a way to get all the videos from subscriptions of a user, but it requires authentication and isn't very flexible, for example, so right now I'm making calls for each requested channel.
@@ -13,7 +13,7 @@ module Livestreamer
13
13
  "twitch.tv/#{channel} #{quality} & "
14
14
  popout_chat = "http://www.twitch.tv/chat/embed"\
15
15
  "?channel=#{channel}&popout_chat=true"
16
- Launchy.open(popout_chat)
16
+ Launchy.open(popout_chat) if chat
17
17
  exec stream
18
18
  end
19
19
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'twitchy'
3
- s.version = '0.1.2'
3
+ s.version = '0.1.3'
4
4
  s.date = '2014-02-11'
5
5
  s.summary = "A Ruby wrapper around livestreamer"
6
6
  s.description = "Twitchy provides for a system to query the TwitchAPI "\
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitchy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - blkbsstt