-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-coub.gemspec
24 lines (21 loc) · 1012 Bytes
/
omniauth-coub.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omniauth-coub/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Kirill Gorin"]
gem.email = ["[email protected]"]
gem.description = "Provides an OmniAuth strategy for Coub to make authentication with the Coub API simple"
gem.summary = "An OmniAuth strategy for Coub"
gem.homepage = "https://github.com/coub/omniauth-coub"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "omniauth-coub"
gem.require_paths = ["lib"]
gem.version = Omniauth::Coub::VERSION
gem.add_dependency 'omniauth', '~> 1.0'
gem.add_dependency 'omniauth-oauth2', '~> 1.1'
gem.add_development_dependency "rspec", "~> 2.7"
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'webmock'
end