seria 1.0.4 → 1.0.5
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.
- checksums.yaml +8 -8
- data/README.md +3 -0
- data/lib/seria/version.rb +1 -1
- data/seria.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZTQ2MTU1MTBhOGQxODI1ZDQzMjBjMjc5ZTAzMTIwYzE3Njg3N2ZjZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ODg3OWVkYzlkMThiMTk1ZGY2NDRlNzc2ZDIwOGQ2MTE1MWMyYzA1OA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YTJmMGFiMDMzNTZjMGVjZWU2YWRmZTVhMjNlNjYyMWE0M2FkMzY5ZGJhMDZj
|
|
10
|
+
MjRjZDIzZTU1MGU1ZWFmMzI5YzliNDQxMzc2NTVjMDQ5MzRlNDU2NDcxOTdh
|
|
11
|
+
MzE0NWU1ZDMwMjBjMGEyOThmNjZjODE3Y2ZlMmI0ZjRjNGU4NTg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
OGQ2MTllMjhhYjEzM2IwNjcxMWVlMGQ2Yzc5MWVkMzBlNGFlNGU3ZTJjNjAz
|
|
14
|
+
YzIwYmMzZDRjYmFkODY5YmE2ZGMzOWQ2NWVlZTRhNjgyMWM2MWE2ZWFlNzk0
|
|
15
|
+
NmFjYjZiNjYxODU2N2UwMGI2YjZmZjRhMWE2ZTk2ZmRlOWRjM2M=
|
data/README.md
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/seria)
|
|
4
4
|
|
|
5
|
+
## Why Seria?
|
|
5
6
|
I wrote this gem because I needed to be able to load my ARs with key-value attributes without running migrations,
|
|
6
7
|
in a similar way to [dynamic_attributes](https://github.com/moiristo/dynamic_attributes) gem.
|
|
7
8
|
But I also needed to be able to query the data, so storing it in a JSON wasn't a good enough solution.
|
|
9
|
+
There were still mongodb documents, but I wanted to be able to run join queries, and exporting data to another database
|
|
10
|
+
was an overkill.
|
|
8
11
|
|
|
9
12
|
Seria lets you add completely dynamic data to your ARs.
|
|
10
13
|
Seria doesn't store your hash data in a JSON, but in separate records making it queryable.
|
data/lib/seria/version.rb
CHANGED
data/seria.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Seria::VERSION
|
|
9
9
|
spec.authors = ["Ronna"]
|
|
10
10
|
spec.email = [""]
|
|
11
|
-
spec.description = %q{
|
|
12
|
-
spec.summary = %q{}
|
|
11
|
+
spec.description = %q{}
|
|
12
|
+
spec.summary = %q{Add dynamic JSON data to active records. Access it like documents. Query it.}
|
|
13
13
|
spec.homepage = ""
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: seria
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ronna
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-06-
|
|
11
|
+
date: 2014-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -80,8 +80,7 @@ dependencies:
|
|
|
80
80
|
- - ! '>='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description:
|
|
84
|
-
it.
|
|
83
|
+
description: ''
|
|
85
84
|
email:
|
|
86
85
|
- ''
|
|
87
86
|
executables: []
|
|
@@ -124,6 +123,7 @@ rubyforge_project:
|
|
|
124
123
|
rubygems_version: 2.2.2
|
|
125
124
|
signing_key:
|
|
126
125
|
specification_version: 4
|
|
127
|
-
summary:
|
|
126
|
+
summary: Add dynamic JSON data to active records. Access it like documents. Query
|
|
127
|
+
it.
|
|
128
128
|
test_files:
|
|
129
129
|
- spec/converters_spec.rb
|