mongoid_session_store 1.0.0.beta2 → 1.0.0
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.
- data/README.rdoc +5 -1
- data/VERSION +1 -1
- data/mongoid_session_store.gemspec +2 -2
- metadata +5 -8
data/README.rdoc
CHANGED
@@ -15,7 +15,11 @@ In your Gemfile:
|
|
15
15
|
gem "bson_ext", "1.0.4"
|
16
16
|
gem "mongoid_session_store"
|
17
17
|
|
18
|
-
In the session_store initializer (config/initializers/session_store.rb)
|
18
|
+
In the session_store initializer (config/initializers/session_store.rb) you can comment out every line as
|
19
|
+
mongoid session store will be setup for use when added to the gemfile.
|
20
|
+
|
21
|
+
If you want to be more explicit you can comment the currently setup store and add:
|
22
|
+
|
19
23
|
Example::Application.config.session_store :mongoid_store
|
20
24
|
|
21
25
|
== Rake Tasks
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.0
|
1
|
+
1.0.0
|
@@ -5,9 +5,9 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{mongoid_session_store}
|
8
|
-
s.version = "1.0.0
|
8
|
+
s.version = "1.0.0"
|
9
9
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Ryan Fitzgerald"]
|
12
12
|
s.date = %q{2010-08-30}
|
13
13
|
s.description = %q{store rails 3 sessions in mongoDB}
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongoid_session_store
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
4
|
+
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
|
10
|
-
version: 1.0.0.beta2
|
9
|
+
version: 1.0.0
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Ryan Fitzgerald
|
@@ -109,13 +108,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
109
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
109
|
none: false
|
111
110
|
requirements:
|
112
|
-
- - "
|
111
|
+
- - ">="
|
113
112
|
- !ruby/object:Gem::Version
|
114
113
|
segments:
|
115
|
-
-
|
116
|
-
|
117
|
-
- 1
|
118
|
-
version: 1.3.1
|
114
|
+
- 0
|
115
|
+
version: "0"
|
119
116
|
requirements: []
|
120
117
|
|
121
118
|
rubyforge_project:
|