Updating files.

This commit is contained in:
Michael Bleigh 2010-03-30 16:35:58 -04:00
parent 91f8547e0a
commit 87e171038e
2 changed files with 74 additions and 4 deletions

View File

@ -4,14 +4,15 @@ require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rack-oauthable"
gem.summary = %Q{TODO: one-line summary of your gem}
gem.description = %Q{TODO: longer description of your gem}
gem.name = "omni_auth"
gem.summary = %Q{Auth from anywhere.}
gem.description = %Q{Auth from anywhere.}
gem.email = "michael@intridea.com"
gem.homepage = "http://github.com/mbleigh/rack-oauthable"
gem.homepage = "http://github.com/intridea/omni_auth"
gem.authors = ["Michael Bleigh"]
gem.add_dependency 'rack'
gem.add_dependency 'rest-client'
gem.add_dependency 'oauth'
gem.add_development_dependency "rspec", ">= 1.2.9"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end

69
omni_auth.gemspec Normal file
View File

@ -0,0 +1,69 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{omni_auth}
s.version = "0.0.0.alpha.1"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Michael Bleigh"]
s.date = %q{2010-03-30}
s.description = %q{Auth from anywhere.}
s.email = %q{michael@intridea.com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/omni_auth.rb",
"lib/omni_auth/strategies/gowalla.rb",
"lib/omni_auth/strategies/http_basic.rb",
"lib/omni_auth/strategies/linked_in.rb",
"lib/omni_auth/strategies/oauth.rb",
"lib/omni_auth/strategies/twitter.rb",
"lib/omni_auth/strategy.rb",
"spec/auth_elsewhere/oauth_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/intridea/omni_auth}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{Auth from anywhere.}
s.test_files = [
"spec/auth_elsewhere/oauth_spec.rb",
"spec/spec_helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rack>, [">= 0"])
s.add_runtime_dependency(%q<rest-client>, [">= 0"])
s.add_runtime_dependency(%q<oauth>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
else
s.add_dependency(%q<rack>, [">= 0"])
s.add_dependency(%q<rest-client>, [">= 0"])
s.add_dependency(%q<oauth>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
else
s.add_dependency(%q<rack>, [">= 0"])
s.add_dependency(%q<rest-client>, [">= 0"])
s.add_dependency(%q<oauth>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
end