serializable 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.
- data/README.rdoc +12 -0
- data/VERSION +1 -1
- data/serializable.gemspec +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -8,6 +8,18 @@ Complete replacement of ActiveRecord serialize functionality.
|
|
8
8
|
* No bugs with ActiveRecord serialization in threads
|
9
9
|
* "save" do not saves serialized attributes every time, but only when it is really necessary
|
10
10
|
|
11
|
+
== Usage
|
12
|
+
|
13
|
+
* Add to Gemfile
|
14
|
+
|
15
|
+
gem 'serializable'
|
16
|
+
|
17
|
+
* Use in your Models
|
18
|
+
|
19
|
+
class SomeModel < ActiveRecord::Base
|
20
|
+
serializable :attribute_name, Hash.class
|
21
|
+
end
|
22
|
+
|
11
23
|
== Contributing to serializable
|
12
24
|
|
13
25
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/serializable.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: serializable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
77
|
version: '0'
|
78
78
|
segments:
|
79
79
|
- 0
|
80
|
-
hash:
|
80
|
+
hash: 3834103604459554940
|
81
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
82
|
none: false
|
83
83
|
requirements:
|