liveblink 0.1.0
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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/liveblink +5 -0
- data/bin/liveblink.rb +5 -0
- data/bin/setup +7 -0
- data/lib/favorites.txt +2 -0
- data/lib/liveblink/cli/fav.rb +83 -0
- data/lib/liveblink/cli.rb +29 -0
- data/lib/liveblink/version.rb +3 -0
- data/lib/liveblink.rb +6 -0
- data/liveblink.gemspec +36 -0
- metadata +161 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e458aec2e051c4a31c44f220aed6686346bf063b
|
4
|
+
data.tar.gz: cecf6116c856d02ef0c4469714ab02f0fccdb547
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2eda93fea3000cf8fe5d0d444f5673fccaa765644e28c2ab704e7cf8e2b422dadc8944c20f207b37d8fcef7e888a4f97213357ea700e303a6b52d911831ccca3
|
7
|
+
data.tar.gz: c5e27b40f2b41f311b6eb8d44f84fa4ea0386d9ef33afdf2195ba482a460720e28cd3e0080204651b4a4f48d6d0b371f42e01354bb4a177ede40d77a7f5dabac
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Nicolas Oman
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Liveblink
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/liveblink`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'liveblink'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install liveblink
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/liveblink.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "liveblink"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/liveblink
ADDED
data/bin/liveblink.rb
ADDED
data/bin/setup
ADDED
data/lib/favorites.txt
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
require 'cathodic'
|
2
|
+
|
3
|
+
module LiveBlink
|
4
|
+
module CLI
|
5
|
+
class Fav < Thor
|
6
|
+
#favorites
|
7
|
+
desc "list", "Displays favorites list"
|
8
|
+
method_option :online, :aliases => "-o", :desc => "Lists only streams that are online"
|
9
|
+
def list
|
10
|
+
puts File.read('./lib/favorites.txt')
|
11
|
+
online = options[:online]
|
12
|
+
if online
|
13
|
+
Helper.get_online_favs
|
14
|
+
end
|
15
|
+
end
|
16
|
+
default_task :list
|
17
|
+
|
18
|
+
#favorites add NAME
|
19
|
+
desc "fav add NAME", "Adds NAME to favorites list"
|
20
|
+
def add(name)
|
21
|
+
open('./lib/favorites.txt', 'a') { |f|
|
22
|
+
f.puts name
|
23
|
+
}
|
24
|
+
end
|
25
|
+
|
26
|
+
#favorites delete NAME
|
27
|
+
desc "fav delete NAME", "Deletes NAME from favorites list"
|
28
|
+
def delete(name)
|
29
|
+
end
|
30
|
+
|
31
|
+
# #favorites -o
|
32
|
+
# desc "fav -o", "Lists favorite streams that are online"
|
33
|
+
# def online
|
34
|
+
# i = 0
|
35
|
+
# datas = []
|
36
|
+
# puts "These streams are online:"
|
37
|
+
# datas = Helper.get_datas(Helper.get_favs)
|
38
|
+
# datas.each do |data|
|
39
|
+
# if data.online == true
|
40
|
+
# puts data.stream_name + ', playing ' + data.game + ' (' + data.viewers.to_s + ' viewers)'
|
41
|
+
# end
|
42
|
+
# end
|
43
|
+
# end
|
44
|
+
end
|
45
|
+
|
46
|
+
module Helper
|
47
|
+
def self.get_online_favs
|
48
|
+
i = 0
|
49
|
+
datas = []
|
50
|
+
puts "These streams are online:"
|
51
|
+
datas = self.get_datas(self.get_favs)
|
52
|
+
datas.each do |data|
|
53
|
+
if data.online == true
|
54
|
+
puts data.stream_name + ', playing ' + data.game + ' (' + data.viewers.to_s + ' viewers)'
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
|
60
|
+
def self.get_favs
|
61
|
+
links = []
|
62
|
+
i = 0
|
63
|
+
# File.read('../favorites.txt')
|
64
|
+
File.foreach('./lib/favorites.txt') {
|
65
|
+
|stream| links[i] = stream
|
66
|
+
i += 1
|
67
|
+
}
|
68
|
+
return links
|
69
|
+
end
|
70
|
+
|
71
|
+
def self.get_datas(links)
|
72
|
+
datas = []
|
73
|
+
i = 0
|
74
|
+
links.each do |link|
|
75
|
+
links[i] = 'http://www.twitch.tv/' + link
|
76
|
+
datas[i] = Cathodic::TwitchData.new(links[i])
|
77
|
+
i += 1
|
78
|
+
end
|
79
|
+
return datas
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'thor'
|
2
|
+
require 'liveblink/cli/fav'
|
3
|
+
|
4
|
+
module LiveBlink
|
5
|
+
class Wrapper < Thor
|
6
|
+
desc "hello NAME", "This will greet you"
|
7
|
+
long_desc <<-HELLO_WORLD
|
8
|
+
|
9
|
+
`hello NAME` will print out a message to the person of your choosing.
|
10
|
+
|
11
|
+
Brian Kernighan actually wrote the first "Hello, World!" program
|
12
|
+
as part of the documentation for the BCPL programming language
|
13
|
+
developed by Martin Richards. BCPL was used while C was being
|
14
|
+
developed at Bell Labs a few years before the publication of
|
15
|
+
Kernighan and Ritchie's C book in 1972.
|
16
|
+
|
17
|
+
http://stackoverflow.com/a/12785204
|
18
|
+
HELLO_WORLD
|
19
|
+
option :upcase
|
20
|
+
def hello( name )
|
21
|
+
greeting = "Hello, #{name}"
|
22
|
+
greeting.upcase! if options[:upcase]
|
23
|
+
puts greeting
|
24
|
+
end
|
25
|
+
|
26
|
+
desc "fav COMMANDS", "Favorites control module"
|
27
|
+
subcommand "fav", LiveBlink::CLI::Fav
|
28
|
+
end
|
29
|
+
end
|
data/lib/liveblink.rb
ADDED
data/liveblink.gemspec
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'liveblink/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "liveblink"
|
8
|
+
spec.version = Liveblink::VERSION
|
9
|
+
spec.authors = ["Nicolas Oman"]
|
10
|
+
spec.email = ["nickomang@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = "A ruby CLI to make watching Twitch streams and VODs via Livestreamer fast and easy"
|
13
|
+
spec.homepage = "https://github.com/Nickomang/liveblink"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
17
|
+
# delete this section to allow pushing this gem to any host.
|
18
|
+
if spec.respond_to?(:metadata)
|
19
|
+
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
20
|
+
else
|
21
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
22
|
+
end
|
23
|
+
|
24
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
|
+
spec.bindir = "exe"
|
26
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
27
|
+
spec.require_paths = ["lib"]
|
28
|
+
|
29
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
30
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
31
|
+
spec.add_development_dependency "rspec"
|
32
|
+
spec.add_dependency 'thor'
|
33
|
+
spec.add_dependency 'httparty'
|
34
|
+
spec.add_dependency 'cathodic', "~> 0"
|
35
|
+
spec.add_dependency 'iconv'
|
36
|
+
end
|
metadata
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: liveblink
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nicolas Oman
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-07-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: thor
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: httparty
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: cathodic
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ~>
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ~>
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: iconv
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
description:
|
112
|
+
email:
|
113
|
+
- nickomang@gmail.com
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- .gitignore
|
119
|
+
- .rspec
|
120
|
+
- .travis.yml
|
121
|
+
- Gemfile
|
122
|
+
- LICENSE.txt
|
123
|
+
- README.md
|
124
|
+
- Rakefile
|
125
|
+
- bin/console
|
126
|
+
- bin/liveblink
|
127
|
+
- bin/liveblink.rb
|
128
|
+
- bin/setup
|
129
|
+
- lib/favorites.txt
|
130
|
+
- lib/liveblink.rb
|
131
|
+
- lib/liveblink/cli.rb
|
132
|
+
- lib/liveblink/cli/fav.rb
|
133
|
+
- lib/liveblink/version.rb
|
134
|
+
- liveblink.gemspec
|
135
|
+
homepage: https://github.com/Nickomang/liveblink
|
136
|
+
licenses:
|
137
|
+
- MIT
|
138
|
+
metadata:
|
139
|
+
allowed_push_host: 'TODO: Set to ''http://mygemserver.com'''
|
140
|
+
post_install_message:
|
141
|
+
rdoc_options: []
|
142
|
+
require_paths:
|
143
|
+
- lib
|
144
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - '>='
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '0'
|
149
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - '>='
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '0'
|
154
|
+
requirements: []
|
155
|
+
rubyforge_project:
|
156
|
+
rubygems_version: 2.0.14
|
157
|
+
signing_key:
|
158
|
+
specification_version: 4
|
159
|
+
summary: A ruby CLI to make watching Twitch streams and VODs via Livestreamer fast
|
160
|
+
and easy
|
161
|
+
test_files: []
|