forked from thibaudgg/video_info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
video_info.gemspec
27 lines (22 loc) · 894 Bytes
/
video_info.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "video_info/version"
Gem::Specification.new do |s|
s.name = "video_info"
s.version = VideoInfoVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Thibaud Guillaume-Gentil']
s.email = ['[email protected]']
s.homepage = 'http://rubygems.org/gems/video_info'
s.summary = 'Vimeo & Youtube parser'
s.description = 'Get video info from youtube and vimeo url.'
s.rubyforge_project = "video_info"
s.add_dependency 'hpricot', '~> 0.8.4'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rspec', '>= 2.7.0'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'webmock'
s.add_development_dependency 'vcr'
s.files = Dir.glob('{lib}/**/*') + %w[LICENSE README.md]
s.require_paths = ["lib"]
end