-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-acton.gemspec
executable file
·27 lines (23 loc) · 1.08 KB
/
omniauth-acton.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 -*-
require File.expand_path('../lib/omniauth/acton/version', __FILE__)
Gem::Specification.new do |gem|
gem.add_dependency 'omniauth'
gem.add_dependency 'oauth2'
gem.add_dependency 'omniauth-oauth2'
gem.add_development_dependency 'rspec', '~> 2.7'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'webmock'
gem.add_development_dependency 'simplecov'
gem.authors = ["Kristen Kehlenbeck"]
gem.email = ["kristen@attend.com"]
gem.description = %q{An OmniAuth strategy for authenticating with the Act-On REST API.}
gem.summary = %q{OmniAuth strategy for authenticating with Act-On.}
gem.homepage = "https://github.com/AttendDotCom/omniauth-acton"
gem.license = "GPL v3"
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-acton"
gem.require_paths = ["lib"]
gem.version = OmniAuth::Acton::VERSION
end