ohm 2.2.0 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/.gems +2 -2
  3. data/CONTRIBUTING +19 -0
  4. data/README.md +2 -0
  5. data/ohm.gemspec +2 -2
  6. metadata +7 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c7c0f6876c2563f59ad8e20dcbab465e5cffcb8
4
- data.tar.gz: e4f06f406172d073ff4ae25ac2d4f9ebad74c034
3
+ metadata.gz: 3aab8e61021f4edc8be614c9804068a0412f521d
4
+ data.tar.gz: 7edd271f3f609d5a9b8701b67145d55c68ffa271
5
5
  SHA512:
6
- metadata.gz: 9a55ef1b2043b4950a617ffa984a01a410a2aea17d656072c4732a995d7dcff550b38437a60ad382b9f30f9b87a2541064597ccb40c3e70043cf38f2cb77638e
7
- data.tar.gz: ef38056726cf8956480bf728150168a1d2dd1337b5987b9ce6845c771c05f1c53fc38d84d92bab4c8fa015e3069ddfb141f548eee6d68b051417608a9dd2cc23
6
+ metadata.gz: 87db7ed730a34029c2aeb84f16a79ea480918abfeff970a84d1ba0393b06b572a00a6017ca18acc79fc1768c981a40c2016c663b40c5e45c75261227d86647d4
7
+ data.tar.gz: c5ef751dcb8b25b7348d9e0dba04029d207c567274912b28c87e92b86e5b4b344896aa3a1df072c1510d045340d20c0aee6b9adf7b1b278d2bc00d1dd9ff70f5
data/.gems CHANGED
@@ -1,5 +1,5 @@
1
- msgpack -v 0.5.8
1
+ msgpack -v 0.6.0
2
2
  nido -v 0.0.1
3
- redic -v 1.3.0
3
+ redic -v 1.5.0
4
4
  cutest -v 1.2.2
5
5
  stal -v 0.1.0
@@ -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
  ---------------
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "ohm"
3
- s.version = "2.2.0"
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.0
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-03-03 00:00:00.000000000 Z
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: '0'
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: '0'
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