openid_mongodb_store 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/Rakefile +2 -2
  2. data/VERSION +1 -1
  3. data/openid_mongodb_store.gemspec +56 -0
  4. metadata +4 -3
data/Rakefile CHANGED
@@ -5,8 +5,8 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "openid_mongodb_store"
8
- gem.summary = "An adaptor for storing OpenID nonces and associations with MongoMapper"
9
- gem.description = "Like the ActiveRecord Store, but for MongoMapper."
8
+ gem.summary = "An adaptor for storing OpenID nonces and associations with Mongo. Uses 10gen's Mongo Ruby library so should work with MongoMapper, Mongoid, and others."
9
+ gem.description = "Like the ActiveRecord Store, but for Mongo."
10
10
  gem.email = "samsm@samsm.com"
11
11
  gem.homepage = "http://github.com/samsm/openid_mongodb_store"
12
12
  gem.authors = ["Sam Schenkman-Moore"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,56 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{openid_mongodb_store}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Sam Schenkman-Moore"]
12
+ s.date = %q{2009-12-10}
13
+ s.description = %q{Like the ActiveRecord Store, but for Mongo.}
14
+ s.email = %q{samsm@samsm.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "config.ru",
27
+ "lib/openid_mongodb_store.rb",
28
+ "lib/openid_mongodb_store/store.rb",
29
+ "openid_mongodb_store.gemspec",
30
+ "test/helper.rb",
31
+ "test/test_openid_mongodb_store.rb"
32
+ ]
33
+ s.homepage = %q{http://github.com/samsm/openid_mongodb_store}
34
+ s.rdoc_options = ["--charset=UTF-8"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = %q{1.3.5}
37
+ s.summary = %q{An adaptor for storing OpenID nonces and associations with Mongo. Uses 10gen's Mongo Ruby library so should work with MongoMapper, Mongoid, and others.}
38
+ s.test_files = [
39
+ "test/helper.rb",
40
+ "test/test_openid_mongodb_store.rb"
41
+ ]
42
+
43
+ if s.respond_to? :specification_version then
44
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
45
+ s.specification_version = 3
46
+
47
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
48
+ s.add_development_dependency(%q<yard>, [">= 0"])
49
+ else
50
+ s.add_dependency(%q<yard>, [">= 0"])
51
+ end
52
+ else
53
+ s.add_dependency(%q<yard>, [">= 0"])
54
+ end
55
+ end
56
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openid_mongodb_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Schenkman-Moore
@@ -22,7 +22,7 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: "0"
24
24
  version:
25
- description: Like the ActiveRecord Store, but for MongoMapper.
25
+ description: Like the ActiveRecord Store, but for Mongo.
26
26
  email: samsm@samsm.com
27
27
  executables: []
28
28
 
@@ -41,6 +41,7 @@ files:
41
41
  - config.ru
42
42
  - lib/openid_mongodb_store.rb
43
43
  - lib/openid_mongodb_store/store.rb
44
+ - openid_mongodb_store.gemspec
44
45
  - test/helper.rb
45
46
  - test/test_openid_mongodb_store.rb
46
47
  has_rdoc: true
@@ -70,7 +71,7 @@ rubyforge_project:
70
71
  rubygems_version: 1.3.5
71
72
  signing_key:
72
73
  specification_version: 3
73
- summary: An adaptor for storing OpenID nonces and associations with MongoMapper
74
+ summary: An adaptor for storing OpenID nonces and associations with Mongo. Uses 10gen's Mongo Ruby library so should work with MongoMapper, Mongoid, and others.
74
75
  test_files:
75
76
  - test/helper.rb
76
77
  - test/test_openid_mongodb_store.rb