-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathidentity_plugin.gemspec
31 lines (25 loc) · 1.19 KB
/
identity_plugin.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'identity_plugin/version'
Gem::Specification.new do |s|
s.name = "identity_plugin"
s.version = IdentityPlugin::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Colibri Software"]
s.homepage = "http://www.colibri-software.com"
s.summary = "Locomotive plugin using omniauth-identity for user authentication."
s.description = "This plugin provides features through omniauth-identity for users to sign up/in and logout."
s.licenses = ["MIT"]
s.add_dependency 'rails', '~> 3.2'
s.add_dependency 'locomotive_plugins', '~> 1.1'
s.add_dependency 'cells', '~> 3.9'
s.add_dependency 'rolify', '~> 3.4'
s.add_dependency 'omniauth', '~> 1.2'
s.add_dependency 'omniauth-identity', '~> 1.1'
s.add_dependency 'foundation-rails', '~> 5.2.2'
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir['Gemfile', '{app,config,lib}/**/*'] + ["MIT-LICENSE", "Rakefile", "README.textile"]
s.require_paths = ["lib"]
end