28 lines
1.3 KiB
Ruby
28 lines
1.3 KiB
Ruby
# -*- encoding: utf-8 -*-
|
|
require File.expand_path('../lib/omniauth_crowd/version', __FILE__)
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.authors = ["Robert Di Marco"]
|
|
gem.email = ["rob@innovationontherun.com"]
|
|
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.files = Dir.glob("lib/**/*.*")
|
|
gem.test_files = Dir.glob("spec/**/**/*.*")
|
|
gem.name = "omniauth_crowd"
|
|
gem.require_paths = ["lib"]
|
|
gem.version = OmniAuth::Crowd::VERSION
|
|
|
|
gem.add_runtime_dependency 'omniauth', '~> 2.0'
|
|
gem.add_runtime_dependency 'nokogiri', '>= 1.4.4'
|
|
gem.add_runtime_dependency 'activesupport', '>= 0'
|
|
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<rexml>, ["~> 3.2.5"])
|
|
gem.add_development_dependency(%q<rspec>, [">= 3.4"])
|
|
gem.add_development_dependency(%q<webmock>, ["~> 3.0.0"])
|
|
gem.add_development_dependency(%q<bundler>, ["> 1.0.0"])
|
|
end
|