video 0.0.1
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.
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +23 -0
- data/Rakefile +2 -0
- data/lib/video/version.rb +5 -0
- data/lib/video.rb +31 -0
- data/spec/spec_helper.rb +20 -0
- data/spec/video_spec.rb +34 -0
- data/video.gemspec +20 -0
- metadata +90 -0
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Sam Buna
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# GC::Video
|
2
|
+
|
3
|
+
Parse and consume video links
|
4
|
+
|
5
|
+
gem 'video'
|
6
|
+
|
7
|
+
### Usage
|
8
|
+
|
9
|
+
Only youtube links are supported so far
|
10
|
+
|
11
|
+
link = GC::Video.new "http://www.youtube.com/watch?v=t9LMOydfc4k&feature=related"
|
12
|
+
|
13
|
+
link.id
|
14
|
+
=> "t9LMOydfc4k"
|
15
|
+
|
16
|
+
link.provider
|
17
|
+
=> :youtube
|
18
|
+
|
19
|
+
link.embed('560x315')
|
20
|
+
=> <iframe width="560" height="315"
|
21
|
+
src="http://www.youtube.com/embed/t9LMOydfc4k&html5=1"
|
22
|
+
frameborder="0" allowfullscreen>
|
23
|
+
</iframe>
|
data/Rakefile
ADDED
data/lib/video.rb
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
require "video/version"
|
2
|
+
require 'uri'
|
3
|
+
|
4
|
+
module GC
|
5
|
+
class Video
|
6
|
+
attr_accessor :id, :uri, :provider, :params
|
7
|
+
|
8
|
+
def initialize link
|
9
|
+
@link = link
|
10
|
+
@uri = URI(@link)
|
11
|
+
@provider = case @uri.host
|
12
|
+
when /youtube.com/ then :youtube
|
13
|
+
end
|
14
|
+
@params = Hash[*@uri.query.split('&').map { |kv| sp = kv.split('='); sp[0] = sp[0].to_sym; sp }.flatten]
|
15
|
+
end
|
16
|
+
|
17
|
+
def id
|
18
|
+
params[:v] if youtube?
|
19
|
+
end
|
20
|
+
|
21
|
+
def youtube?
|
22
|
+
provider == :youtube
|
23
|
+
end
|
24
|
+
|
25
|
+
def embed dim='560x315', options={}
|
26
|
+
options[:load] = true if options[:load].nil?
|
27
|
+
h,w = dim.split('x')
|
28
|
+
%(<iframe width="#{h}" height="#{w}" #{options[:load] ? 'src' : 'data-src'}="http://www.youtube.com/embed/#{id}?html5=1" frameborder="0" allowfullscreen></iframe>) if youtube?
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# Require this file using `require "spec_helper"` to ensure that it is only
|
4
|
+
# loaded once.
|
5
|
+
#
|
6
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
7
|
+
RSpec.configure do |config|
|
8
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
9
|
+
config.run_all_when_everything_filtered = true
|
10
|
+
config.filter_run :focus
|
11
|
+
|
12
|
+
# Run specs in random order to surface order dependencies. If you find an
|
13
|
+
# order dependency and want to debug it, you can fix the order by providing
|
14
|
+
# the seed, which is printed after each run.
|
15
|
+
# --seed 1234
|
16
|
+
config.order = 'random'
|
17
|
+
end
|
18
|
+
|
19
|
+
require 'video'
|
20
|
+
require 'pry'
|
data/spec/video_spec.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe GC::Video do
|
4
|
+
|
5
|
+
let(:video) { GC::Video.new 'http://www.youtube.com/watch?v=t9LMOydfc4k&feature=related' }
|
6
|
+
|
7
|
+
it 'parses the link' do
|
8
|
+
video.uri.should be
|
9
|
+
video.uri.scheme.should == 'http'
|
10
|
+
video.uri.host.should == 'www.youtube.com'
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'parses for a provider symbol' do
|
14
|
+
video.provider.should == :youtube
|
15
|
+
video.should be_youtube
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'converts the query string into a hash' do
|
19
|
+
video.params.should include(v: 't9LMOydfc4k', feature:'related')
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'looks for a video id' do
|
23
|
+
video.id.should == 't9LMOydfc4k'
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'outputs provider recommended code to embed' do
|
27
|
+
video.embed('1024x768').should == %(<iframe width="1024" height="768" src="http://www.youtube.com/embed/t9LMOydfc4k?html5=1" frameborder="0" allowfullscreen></iframe>)
|
28
|
+
end
|
29
|
+
|
30
|
+
it 'outputs provider recommended code without the src attribute' do
|
31
|
+
video.embed('1024x768', load: false).should == %(<iframe width="1024" height="768" data-src="http://www.youtube.com/embed/t9LMOydfc4k?html5=1" frameborder="0" allowfullscreen></iframe>)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
data/video.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/video/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Sam Buna"]
|
6
|
+
gem.email = ["codective@gmail.com"]
|
7
|
+
gem.description = %q{Parse and consume video links}
|
8
|
+
gem.summary = %q{Parse and consume video links. Only youtube links are supported so far}
|
9
|
+
gem.homepage = "https://github.com/codective/video"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "video"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = GC::Video::VERSION
|
17
|
+
|
18
|
+
gem.add_development_dependency('rspec')
|
19
|
+
gem.add_development_dependency('pry')
|
20
|
+
end
|
metadata
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: video
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Sam Buna
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-08-20 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: pry
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: Parse and consume video links
|
47
|
+
email:
|
48
|
+
- codective@gmail.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- .rspec
|
55
|
+
- Gemfile
|
56
|
+
- LICENSE
|
57
|
+
- README.md
|
58
|
+
- Rakefile
|
59
|
+
- lib/video.rb
|
60
|
+
- lib/video/version.rb
|
61
|
+
- spec/spec_helper.rb
|
62
|
+
- spec/video_spec.rb
|
63
|
+
- video.gemspec
|
64
|
+
homepage: https://github.com/codective/video
|
65
|
+
licenses: []
|
66
|
+
post_install_message:
|
67
|
+
rdoc_options: []
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ! '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
78
|
+
requirements:
|
79
|
+
- - ! '>='
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
requirements: []
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 1.8.24
|
85
|
+
signing_key:
|
86
|
+
specification_version: 3
|
87
|
+
summary: Parse and consume video links. Only youtube links are supported so far
|
88
|
+
test_files:
|
89
|
+
- spec/spec_helper.rb
|
90
|
+
- spec/video_spec.rb
|