forked from mbleigh/twitter-auth
-
Notifications
You must be signed in to change notification settings - Fork 3
/
twitter-auth.gemspec
96 lines (92 loc) · 3.68 KB
/
twitter-auth.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{twitter-auth}
s.version = "0.1.22"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Michael Bleigh"]
s.date = %q{2009-06-19}
s.description = %q{TwitterAuth is a Rails plugin gem that provides Single Sign-On capabilities for Rails applications via Twitter. Both OAuth and HTTP Basic are supported.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"README.markdown"
]
s.files = [
"CHANGELOG.markdown",
"README.markdown",
"Rakefile",
"VERSION.yml",
"app/controllers/sessions_controller.rb",
"app/models/twitter_auth/basic_user.rb",
"app/models/twitter_auth/generic_user.rb",
"app/models/twitter_auth/oauth_user.rb",
"app/views/sessions/_login_form.html.erb",
"app/views/sessions/new.html.erb",
"config/routes.rb",
"generators/twitter_auth/USAGE",
"generators/twitter_auth/templates/migration.rb",
"generators/twitter_auth/templates/twitter_auth.yml",
"generators/twitter_auth/templates/user.rb",
"generators/twitter_auth/twitter_auth_generator.rb",
"lib/twitter_auth.rb",
"lib/twitter_auth/controller_extensions.rb",
"lib/twitter_auth/cryptify.rb",
"lib/twitter_auth/dispatcher/basic.rb",
"lib/twitter_auth/dispatcher/oauth.rb",
"lib/twitter_auth/dispatcher/shared.rb",
"rails/init.rb",
"spec/controllers/controller_extensions_spec.rb",
"spec/controllers/sessions_controller_spec.rb",
"spec/fixtures/config/twitter_auth.yml",
"spec/fixtures/factories.rb",
"spec/fixtures/fakeweb.rb",
"spec/fixtures/twitter.rb",
"spec/models/twitter_auth/basic_user_spec.rb",
"spec/models/twitter_auth/generic_user_spec.rb",
"spec/models/twitter_auth/oauth_user_spec.rb",
"spec/schema.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/twitter_auth/cryptify_spec.rb",
"spec/twitter_auth/dispatcher/basic_spec.rb",
"spec/twitter_auth/dispatcher/oauth_spec.rb",
"spec/twitter_auth/dispatcher/shared_spec.rb",
"spec/twitter_auth_spec.rb"
]
s.homepage = %q{http://github.com/mbleigh/twitter-auth}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{twitter-auth}
s.rubygems_version = %q{1.3.3}
s.summary = %q{TwitterAuth is a Rails plugin gem that provides Single Sign-On capabilities for Rails applications via Twitter.}
s.test_files = [
"spec/controllers/controller_extensions_spec.rb",
"spec/controllers/sessions_controller_spec.rb",
"spec/fixtures/factories.rb",
"spec/fixtures/fakeweb.rb",
"spec/fixtures/twitter.rb",
"spec/models/twitter_auth/basic_user_spec.rb",
"spec/models/twitter_auth/generic_user_spec.rb",
"spec/models/twitter_auth/oauth_user_spec.rb",
"spec/schema.rb",
"spec/spec_helper.rb",
"spec/twitter_auth/cryptify_spec.rb",
"spec/twitter_auth/dispatcher/basic_spec.rb",
"spec/twitter_auth/dispatcher/oauth_spec.rb",
"spec/twitter_auth/dispatcher/shared_spec.rb",
"spec/twitter_auth_spec.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<oauth>, [">= 0.3.1"])
s.add_runtime_dependency(%q<ezcrypto>, [">= 0.7.2"])
else
s.add_dependency(%q<oauth>, [">= 0.3.1"])
s.add_dependency(%q<ezcrypto>, [">= 0.7.2"])
end
else
s.add_dependency(%q<oauth>, [">= 0.3.1"])
s.add_dependency(%q<ezcrypto>, [">= 0.7.2"])
end
end