authlogic_facebook 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +2 -1
  2. data/VERSION +1 -1
  3. data/authlogic_facebook.gemspec +5 -2
  4. metadata +12 -2
data/Rakefile CHANGED
@@ -6,11 +6,12 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "authlogic_facebook"
8
8
  gem.summary = %Q{Authlogic plugin to support Facebook without Facebooker}
9
- gem.description = %Q{Authlogic plugin to support Facebook without Facebooker}
9
+ gem.description = %Q{Authlogic plugin to support Facebook without Facebooker. A small unobtrusive gem (mini_fb) is used instead.}
10
10
  gem.email = "GICodeWarrior@gmail.com"
11
11
  gem.homepage = "http://github.com/GICodeWarrior/authlogic_facebook"
12
12
  gem.authors = ["Rusty Burchfield"]
13
13
  gem.add_dependency "mini_fb", ">= 0.1.0"
14
+ gem.add_dependency "authlogic", ">= 2.1.3"
14
15
  gem.add_development_dependency "rspec", ">= 1.2.9"
15
16
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
16
17
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{authlogic_facebook}
8
- s.version = "1.0.0"
8
+ s.version = "1.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Rusty Burchfield"]
12
12
  s.date = %q{2009-12-03}
13
- s.description = %q{Authlogic plugin to support Facebook without Facebooker}
13
+ s.description = %q{Authlogic plugin to support Facebook without Facebooker. A small unobtrusive gem (mini_fb) is used instead.}
14
14
  s.email = %q{GICodeWarrior@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
@@ -48,13 +48,16 @@ Gem::Specification.new do |s|
48
48
 
49
49
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
50
50
  s.add_runtime_dependency(%q<mini_fb>, [">= 0.1.0"])
51
+ s.add_runtime_dependency(%q<authlogic>, [">= 2.1.3"])
51
52
  s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
52
53
  else
53
54
  s.add_dependency(%q<mini_fb>, [">= 0.1.0"])
55
+ s.add_dependency(%q<authlogic>, [">= 2.1.3"])
54
56
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
55
57
  end
56
58
  else
57
59
  s.add_dependency(%q<mini_fb>, [">= 0.1.0"])
60
+ s.add_dependency(%q<authlogic>, [">= 2.1.3"])
58
61
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
59
62
  end
60
63
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlogic_facebook
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rusty Burchfield
@@ -22,6 +22,16 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: 0.1.0
24
24
  version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: authlogic
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 2.1.3
34
+ version:
25
35
  - !ruby/object:Gem::Dependency
26
36
  name: rspec
27
37
  type: :development
@@ -32,7 +42,7 @@ dependencies:
32
42
  - !ruby/object:Gem::Version
33
43
  version: 1.2.9
34
44
  version:
35
- description: Authlogic plugin to support Facebook without Facebooker
45
+ description: Authlogic plugin to support Facebook without Facebooker. A small unobtrusive gem (mini_fb) is used instead.
36
46
  email: GICodeWarrior@gmail.com
37
47
  executables: []
38
48