ohm 2.2.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gems +2 -2
- data/CONTRIBUTING +19 -0
- data/README.md +2 -0
- data/ohm.gemspec +2 -2
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3aab8e61021f4edc8be614c9804068a0412f521d
|
4
|
+
data.tar.gz: 7edd271f3f609d5a9b8701b67145d55c68ffa271
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87db7ed730a34029c2aeb84f16a79ea480918abfeff970a84d1ba0393b06b572a00a6017ca18acc79fc1768c981a40c2016c663b40c5e45c75261227d86647d4
|
7
|
+
data.tar.gz: c5ef751dcb8b25b7348d9e0dba04029d207c567274912b28c87e92b86e5b4b344896aa3a1df072c1510d045340d20c0aee6b9adf7b1b278d2bc00d1dd9ff70f5
|
data/.gems
CHANGED
data/CONTRIBUTING
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
This code tries to solve a particular problem with a very simple
|
2
|
+
implementation. We try to keep the code to a minimum while making
|
3
|
+
it as clear as possible. The design is very likely finished, and
|
4
|
+
if some feature is missing it is possible that it was left out on
|
5
|
+
purpose. That said, new usage patterns may arise, and when that
|
6
|
+
happens we are ready to adapt if necessary.
|
7
|
+
|
8
|
+
A good first step for contributing is to meet us on IRC and discuss
|
9
|
+
ideas. We spend a lot of time on #lesscode at freenode, always ready
|
10
|
+
to talk about code and simplicity. If connecting to IRC is not an
|
11
|
+
option, you can create an issue explaining the proposed change and
|
12
|
+
a use case. We pay a lot of attention to use cases, because our
|
13
|
+
goal is to keep the code base simple. Usually the result of a
|
14
|
+
conversation is the creation of a different tool.
|
15
|
+
|
16
|
+
Please don't start the conversation with a pull request. The code
|
17
|
+
should come at last, and even though it may help to convey an idea,
|
18
|
+
more often than not it draws the attention to a particular
|
19
|
+
implementation.
|
data/README.md
CHANGED
@@ -27,6 +27,7 @@ These are libraries in other languages that were inspired by Ohm.
|
|
27
27
|
* [Nohm](https://github.com/maritz/nohm) for Node.js, created by maritz
|
28
28
|
* [Redisco](https://github.com/iamteem/redisco) for Python, created by iamteem
|
29
29
|
* [redis3m](https://github.com/luca3m/redis3m) for C++, created by luca3m
|
30
|
+
* [Ohmoc](https://github.com/seppo0010/ohmoc) for Objective-C, created by seppo0010
|
30
31
|
|
31
32
|
Articles and Presentations
|
32
33
|
--------------------------
|
@@ -37,6 +38,7 @@ Articles and Presentations
|
|
37
38
|
* [Ohm (Redis ORM)](http://blog.s21g.com/articles/1717) (Japanese)
|
38
39
|
* [Redis and Ohm](http://www.slideshare.net/awksedgreep/redis-and-ohm)
|
39
40
|
* [Ruby off Rails](http://www.slideshare.net/cyx.ucron/ruby-off-rails)
|
41
|
+
* [Data modeling with Redis and Ohm](http://www.sitepoint.com/semi-relational-data-modeling-redis-ohm/)
|
40
42
|
|
41
43
|
Getting started
|
42
44
|
---------------
|
data/ohm.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "ohm"
|
3
|
-
s.version = "2.2.
|
3
|
+
s.version = "2.2.1"
|
4
4
|
s.summary = %{Object-hash mapping library for Redis.}
|
5
5
|
s.description = %Q{Ohm is a library that allows to store an object in Redis, a persistent key-value database. It has very good performance.}
|
6
6
|
s.authors = ["Michel Martens", "Damian Janowski", "Cyril David"]
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.add_dependency "redic"
|
16
16
|
s.add_dependency "nido"
|
17
17
|
s.add_dependency "stal"
|
18
|
-
s.add_dependency "msgpack"
|
18
|
+
s.add_dependency "msgpack", "~> 0.5.0"
|
19
19
|
|
20
20
|
s.add_development_dependency "cutest"
|
21
21
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ohm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michel Martens
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2015-
|
13
|
+
date: 2015-05-28 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: redic
|
@@ -58,16 +58,16 @@ dependencies:
|
|
58
58
|
name: msgpack
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
|
-
- -
|
61
|
+
- - ~>
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version:
|
63
|
+
version: 0.5.0
|
64
64
|
type: :runtime
|
65
65
|
prerelease: false
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
|
-
- -
|
68
|
+
- - ~>
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version:
|
70
|
+
version: 0.5.0
|
71
71
|
- !ruby/object:Gem::Dependency
|
72
72
|
name: cutest
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
@@ -95,6 +95,7 @@ files:
|
|
95
95
|
- .gems
|
96
96
|
- .gitignore
|
97
97
|
- CHANGELOG.md
|
98
|
+
- CONTRIBUTING
|
98
99
|
- LICENSE
|
99
100
|
- README.md
|
100
101
|
- benchmarks/common.rb
|