forked from kylejginavan/youtube_it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
youtube_it.gemspec
28 lines (21 loc) · 989 Bytes
/
youtube_it.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__)
# Maintain your gem's version:
require File.dirname(__FILE__) + "/lib/youtube_it/version"
Gem::Specification.new do |s|
s.name = "youtube_it"
s.version = YouTubeIt::VERSION
s.authors = %w(kylejginavan chebyte mseppae)
s.email = %w([email protected])
s.description = "Upload, delete, update, comment on youtube videos all from one gem."
s.summary = "The most complete Ruby wrapper for youtube api's"
s.homepage = "http://github.com/kylejginavan/youtube_it"
s.add_runtime_dependency("nokogiri", "~> 1.5.2")
s.add_runtime_dependency("oauth", "~> 0.4.4")
s.add_runtime_dependency("oauth2", "~> 0.6")
s.add_runtime_dependency("simple_oauth", "~> 0.1.5")
s.add_runtime_dependency("faraday", "~> 0.8")
s.add_runtime_dependency("builder", ">= 0")
s.files = Dir.glob("lib/**/*") + %w(README.rdoc youtube_it.gemspec)
s.extra_rdoc_files = %w(README.rdoc)
end