forked from robdimarco/omniauth_crowd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth_crowd.gemspec
26 lines (23 loc) · 1.21 KB
/
omniauth_crowd.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 -*-
require File.expand_path('../lib/omniauth_crowd/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Robert Di Marco"]
gem.email = ["[email protected]"]
gem.description = "This is an OmniAuth provider for Atlassian Crowd's REST API. It allows you to easily integrate your Rack application in with Atlassian Crowd."
gem.summary = "An OmniAuth provider for Atlassian Crowd REST API"
gem.homepage = "http://github.com/robdimarco/omniauth_crowd"
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_crowd"
gem.require_paths = ["lib"]
gem.version = OmniAuth::Crowd::VERSION
gem.add_dependency 'omniauth', '~> 1.0'
gem.add_dependency 'nokogiri', '>= 1.4.4'
gem.add_development_dependency(%q<rack>, [">= 0"])
gem.add_development_dependency(%q<rake>, [">= 0"])
gem.add_development_dependency(%q<rack-test>, [">= 0"])
gem.add_development_dependency(%q<rspec>, ["~> 2.5.0"])
gem.add_development_dependency(%q<webmock>, ["~> 1.3.4"])
gem.add_development_dependency(%q<bundler>, ["> 1.0.0"])
end