forked from twowordbird/omniauth-tequila
-
Notifications
You must be signed in to change notification settings - Fork 2
/
omniauth-tequila.gemspec
32 lines (26 loc) · 1.34 KB
/
omniauth-tequila.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
28
29
30
31
32
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omniauth/tequila/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Chris Bird']
gem.email = ['[email protected]']
gem.description = <<-EOF
This is an OmniAuth 1.0 compatible strategy that authenticates via EPFL's Tequila protocol. By default, it connects to EPFL's Tequila server, but it is fully configurable.
EOF
gem.summary = %q{Tequila Strategy for OmniAuth}
gem.homepage = 'https://github.com/twowordbird/omniauth-tequila'
gem.license = 'MIT'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = 'omniauth-tequila'
gem.require_paths = ['lib']
gem.version = Omniauth::Tequila::VERSION
gem.add_dependency 'omniauth', '>= 1.2.0'
gem.add_dependency 'addressable', '~> 2.3'
gem.add_development_dependency 'rake', '~> 0.9'
gem.add_development_dependency 'webmock', '~> 2.3.2'
gem.add_development_dependency 'simplecov', '~> 0.7.1'
gem.add_development_dependency 'rspec', '~> 2.11'
gem.add_development_dependency 'rack-test', '~> 0.6'
gem.add_development_dependency 'awesome_print'
end