mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
17 lines
588 B
Ruby
17 lines
588 B
Ruby
version = File.open(File.dirname(__FILE__) + '/../VERSION', 'r').read.strip
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = "oa-core"
|
|
gem.version = version
|
|
gem.summary = %Q{HTTP Basic strategies for OmniAuth.}
|
|
gem.description = %Q{HTTP Basic strategies for OmniAuth.}
|
|
gem.email = "michael@intridea.com"
|
|
gem.homepage = "http://github.com/intridea/omniauth"
|
|
gem.authors = ["Michael Bleigh"]
|
|
|
|
gem.files = Dir.glob("{lib}/**/*") + %w(LICENSE)
|
|
|
|
gem.add_dependency 'rack', '~> 1.1'
|
|
|
|
eval File.read(File.join(File.dirname(__FILE__), '../development_dependencies.rb'))
|
|
end
|