forked from beardedstudio/bearded-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bearded-auth.gemspec
26 lines (22 loc) · 1.08 KB
/
bearded-auth.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "bearded-auth/version"
Gem::Specification.new do |s|
s.name = "bearded-auth"
s.version = Bearded::Auth::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.9.2'
s.authors = ["Brett Bender", "Dominic Dagradi"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://bearded.com"
s.summary = %q{Bearded authorization and authentication common gems / controllers / models / routes}
s.description = %q{Engine to handle devise omniauth callbacks.}
s.rubyforge_project = "bearded-auth"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib", 'app']
s.add_dependency "devise", '~> 1.4.6'
s.add_dependency 'oa-oauth', "~> 0.2.0"
s.add_dependency 'oa-openid', "~> 0.2.0"
end