voyeu-rb 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ba1f7a264e992aa3aaa9f1a379bfffb323e44501
4
+ data.tar.gz: 2aace92d2eeb981ba2b65e8ec9774b65c3ed16f8
5
+ SHA512:
6
+ metadata.gz: dca388a1ca2f7818360cb2ab30b76a5e6c602a71dbbefe2626860542739d4d6f0fb8d4e89fb8f01ece9b036b3b2a03b889df50d1318be91790e18f31b995757a
7
+ data.tar.gz: e388e3e46b928db3bad6187b4f159373898efcb8cf7a1739afdd24749ec4d8fe59da7ffd3b000a65d72e86a04c207937fefea734845a1103386b03fbf4e1f3b0
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.4
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in voyeur.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 TODO: Write your name
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,91 @@
1
+ # Voyeu-rb
2
+
3
+ Voyeu-rb is a Ruby Wrapper for the [WatchPeopleCode.com](http://watchpeople.code.com) API.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'voyeu-rb'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install voyeu-rb
20
+
21
+ ## Usage
22
+
23
+ **List live streams**
24
+
25
+ ```ruby
26
+ Voyeurbb::Stream.live
27
+ ```
28
+
29
+ **List upcoming streams**
30
+
31
+ ```ruby
32
+ Voyeurb::Stream.upcoming
33
+ ```
34
+
35
+ **List completed streams**
36
+
37
+ ```ruby
38
+ Voyeurb::Stream.completed
39
+ ```
40
+
41
+ **Get information of the stream by ID**
42
+
43
+ ```ruby
44
+ Voyeurb::Stream.find(:id)
45
+ ```
46
+
47
+ **List all streamers**
48
+
49
+ ```ruby
50
+ Voyeurb::Streamer.all
51
+ ```
52
+
53
+ **Get information of a streamer by name**
54
+
55
+ ```ruby
56
+ Voyeurb::Streamer.find_by_name(:name)
57
+ ```
58
+
59
+ **List live streams of a streamer**
60
+
61
+ ```ruby
62
+ Voyeurb::Streamer.find_by_name(:name).live
63
+ ```
64
+
65
+ **List upcoming streams of a streamer**
66
+
67
+ ```ruby
68
+ Voyeurb::Streamer.find_by_name(:name).upcoming
69
+ ```
70
+
71
+ **List completed streams of a streamer**
72
+
73
+ ```ruby
74
+ Voyeurb::Streamer.find_by_name(:name).completed
75
+ ```
76
+
77
+ ## Development
78
+
79
+ 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.
80
+
81
+ 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).
82
+
83
+ ## Contributing
84
+
85
+ Bug reports and pull requests are welcome on GitHub at https://github.com/lurraca/voyeu-rb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
86
+
87
+
88
+ ## License
89
+
90
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
91
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "voyeur"
5
+
6
+
7
+ require "pry"
8
+ Pry.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,47 @@
1
+ module Voyeurb
2
+ class Stream < Base
3
+
4
+ attr_reader :id, :scheduled_start_time, :actual_start_time, :site, :title,
5
+ :url, :user, :viewers
6
+
7
+ def initialize(attributes)
8
+ @id = attributes["id"]
9
+ @scheduled_start_time = attributes["scheduled_start_time"]
10
+ @actual_start_time = attributes["actual_start_time"]
11
+ @site = attributes["site"]
12
+ @title = attributes["title"]
13
+ @url = attributes["url"]
14
+ @user = attributes["user"]
15
+ @viewers = attributes["viewers"]
16
+ end
17
+
18
+ def self.find(id)
19
+ response = Faraday.get("#{ENDPOINT}/streams/#{id}")
20
+ raise StreamNotFound unless response.success?
21
+ attributes = JSON.parse(response.body)["data"]
22
+ new(attributes)
23
+ end
24
+
25
+ def self.live
26
+ response = Faraday.get("#{ENDPOINT}/streams/live")
27
+ streams = JSON.parse(response.body)["data"]
28
+ streams.map { |attributes| new(attributes) }
29
+ end
30
+
31
+ def self.upcoming
32
+ response = Faraday.get("#{ENDPOINT}/streams/upcoming")
33
+ streams = JSON.parse(response.body)["data"]
34
+ streams.map { |attributes| new(attributes) }
35
+ end
36
+
37
+ def self.completed
38
+ # The endpoint for completed returns an error when trying to hit it the API
39
+ # Will implement when is back working again.
40
+
41
+ # response = Faraday.get("#{ENDPOINT}/streams/completed")
42
+ # streams = JSON.parse(response.body)["data"]
43
+ # streams.map { |attributes| new(attributes) }
44
+ end
45
+
46
+ end
47
+ end
@@ -0,0 +1,42 @@
1
+ module Voyeurb
2
+ class Streamer < Base
3
+ attr_reader :name, :twitch, :youtube
4
+
5
+ def initialize(attributes)
6
+ @name = attributes["name"]
7
+ @twitch = attributes["twitch"]
8
+ @youtube = attributes["youtube"]
9
+ end
10
+
11
+ def self.by_name(name)
12
+ response = Faraday.get("#{ENDPOINT}/streamers/#{name}")
13
+ raise StreamerNotFound unless response.success?
14
+ attributes = JSON.parse(response.body)["data"]
15
+ new(attributes)
16
+ end
17
+
18
+ def self.all
19
+ response = Faraday.get("#{ENDPOINT}/streamers")
20
+ streamers = JSON.parse(response.body)["data"]
21
+ streamers.map { |attributes| new(attributes) }
22
+ end
23
+
24
+ def live
25
+ response = Faraday.get("#{ENDPOINT}/streamers/#{name}/live")
26
+ streams = JSON.parse(response.body)["data"]
27
+ streams.map { |attributes| Stream.new(attributes) }
28
+ end
29
+
30
+ def upcoming
31
+ response = Faraday.get("#{ENDPOINT}/streamers/#{name}/upcoming")
32
+ streams = JSON.parse(response.body)["data"]
33
+ streams.map { |attributes| Stream.new(attributes) }
34
+ end
35
+
36
+ def completed
37
+ response = Faraday.get("#{ENDPOINT}/streamers/#{name}/completed")
38
+ streams = JSON.parse(response.body)["data"]
39
+ streams.map { |attributes| Stream.new(attributes) }
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,3 @@
1
+ module Voyeurb
2
+ VERSION = "0.1.2"
3
+ end
data/lib/voyeurb.rb ADDED
@@ -0,0 +1,16 @@
1
+ require 'faraday'
2
+ require 'json'
3
+
4
+ require 'voyeurb/version'
5
+
6
+ module Voyeurb
7
+ class StreamNotFound < Exception; end
8
+ class StreamerNotFound < Exception; end
9
+
10
+ class Base
11
+ ENDPOINT = 'http://www.watchpeoplecode.com/api/v1'
12
+ end
13
+
14
+ autoload :Stream, 'voyeurb/stream'
15
+ autoload :Streamer, 'voyeurb/streamer'
16
+ end
data/voyeurb.gemspec ADDED
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'voyeurb/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "voyeu-rb"
8
+ spec.version = Voyeurb::VERSION
9
+ spec.authors = ["Luis Urraca"]
10
+ spec.email = ["me@lurraca.com"]
11
+
12
+ spec.summary = %q{Ruby Wrapper for WatchPeopleCode.com API}
13
+ spec.description = %q{This gem will fetch WatchPeopleCode data about past, live and upcoming streams so you can build cool stuffs with it.}
14
+ spec.homepage = "https://github.com/lurraca/Voyeu-rb"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.10"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec"
25
+ spec.add_development_dependency 'pry'
26
+ spec.add_development_dependency "vcr"
27
+ spec.add_development_dependency "webmock"
28
+
29
+ spec.add_dependency "faraday"
30
+ spec.add_dependency "json"
31
+
32
+ end
metadata ADDED
@@ -0,0 +1,172 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: voyeu-rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Luis Urraca
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-07-22 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: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
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: vcr
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
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: webmock
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
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: faraday
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
+ - !ruby/object:Gem::Dependency
112
+ name: json
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ description: This gem will fetch WatchPeopleCode data about past, live and upcoming
126
+ streams so you can build cool stuffs with it.
127
+ email:
128
+ - me@lurraca.com
129
+ executables: []
130
+ extensions: []
131
+ extra_rdoc_files: []
132
+ files:
133
+ - ".gitignore"
134
+ - ".rspec"
135
+ - ".travis.yml"
136
+ - CODE_OF_CONDUCT.md
137
+ - Gemfile
138
+ - LICENSE.txt
139
+ - README.md
140
+ - Rakefile
141
+ - bin/console
142
+ - bin/setup
143
+ - lib/voyeurb.rb
144
+ - lib/voyeurb/stream.rb
145
+ - lib/voyeurb/streamer.rb
146
+ - lib/voyeurb/version.rb
147
+ - voyeurb.gemspec
148
+ homepage: https://github.com/lurraca/Voyeu-rb
149
+ licenses:
150
+ - MIT
151
+ metadata: {}
152
+ post_install_message:
153
+ rdoc_options: []
154
+ require_paths:
155
+ - lib
156
+ required_ruby_version: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - ">="
159
+ - !ruby/object:Gem::Version
160
+ version: '0'
161
+ required_rubygems_version: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ requirements: []
167
+ rubyforge_project:
168
+ rubygems_version: 2.4.5
169
+ signing_key:
170
+ specification_version: 4
171
+ summary: Ruby Wrapper for WatchPeopleCode.com API
172
+ test_files: []