-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathomniauth-youtube.gemspec
More file actions
22 lines (18 loc) · 894 Bytes
/
omniauth-youtube.gemspec
File metadata and controls
22 lines (18 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "omniauth-youtube/version"
Gem::Specification.new do |gem|
gem.name = "omniauth-youtube"
gem.version = Omniauth::YouTube::VERSION
gem.authors = ["Jamie Wilkinson"]
gem.email = ["jamie@jamiedubs.com"]
gem.homepage = "https://github.com/jamiew/omniauth-youtube"
gem.description = %q{OmniAuth strategy for YouTube (OAuth 2.0)}
gem.summary = gem.description
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.0'
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if gem.respond_to? :required_rubygems_version=
end