activerecord_cache_store 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "activerecord_cache_store"
6
- s.version = "0.0.4"
6
+ s.version = "0.0.5"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Tomasz Mazur"]
9
9
  s.email = ["defkode@gmail.com"]
@@ -2,7 +2,7 @@ class CreateCache < ActiveRecord::Migration
2
2
  def self.up
3
3
  create_table :cache do |t|
4
4
  t.string :key
5
- t.string :value
5
+ t.text :value
6
6
  t.float :created_at
7
7
  t.float :expires_at
8
8
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord_cache_store
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 5
10
+ version: 0.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tomasz Mazur