redis-session-store 0.1.1 → 0.1.2

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 (3) hide show
  1. data/{README → README.md} +6 -1
  2. data/Rakefile +2 -2
  3. metadata +2 -2
@@ -8,10 +8,15 @@ into a Redis version. No support for fancy stuff like distributed
8
8
  storage across several Redis instances. Feel free to add what you
9
9
  seem fit.
10
10
 
11
+ This library doesn't offer anything related to caching, and is
12
+ only suitable for Rails applications. For other frameworks or
13
+ drop-in support for caching, check out
14
+ [redis-store](http://github.com/jodosha/redis-store/)
15
+
11
16
  Installation
12
17
  ============
13
18
 
14
- gem install redis-session-store
19
+ gem install redis-session-store
15
20
 
16
21
  You know the rest.
17
22
 
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'rubygems/specification'
4
4
 
5
5
  spec = Gem::Specification.new do |s|
6
6
  s.name = 'redis-session-store'
7
- s.version = '0.1.1'
7
+ s.version = '0.1.2'
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.has_rdoc = true
10
10
  s.extra_rdoc_files = ["LICENSE"]
@@ -15,7 +15,7 @@ spec = Gem::Specification.new do |s|
15
15
  s.homepage = ""
16
16
  s.add_dependency "redis"
17
17
  s.require_path = 'lib'
18
- s.files = %w(README Rakefile) + Dir.glob("{lib}/**/*")
18
+ s.files = %w(README.md Rakefile) + Dir.glob("{lib}/**/*")
19
19
  end
20
20
 
21
21
  Rake::GemPackageTask.new(spec) do |pkg|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-session-store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mathias Meyer
@@ -31,7 +31,7 @@ extensions: []
31
31
  extra_rdoc_files:
32
32
  - LICENSE
33
33
  files:
34
- - README
34
+ - README.md
35
35
  - Rakefile
36
36
  - lib/redis-session-store.rb
37
37
  - LICENSE