simply_stored 0.6.5 → 0.6.7
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +2 -2
- data/lib/simply_stored.rb +2 -2
- metadata +7 -7
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Changelog
|
2
2
|
=============
|
3
3
|
|
4
|
+
0.6.7
|
5
|
+
|
6
|
+
- Rebuild with Ruby 1.8
|
7
|
+
|
8
|
+
0.6.6
|
9
|
+
|
10
|
+
- Bump supported CouchPotato version
|
11
|
+
|
12
|
+
0.6.5
|
13
|
+
|
14
|
+
- Retry on connection refused errors, useful when CouchDB takes a break in excessive test runs that teardown/re-create many databases
|
15
|
+
|
4
16
|
0.6.4
|
5
17
|
|
6
18
|
- Restore Ruby 1.9.2 compatibility
|
data/Gemfile.lock
CHANGED
@@ -7,7 +7,7 @@ GEM
|
|
7
7
|
i18n (~> 0.5.0)
|
8
8
|
activesupport (3.0.9)
|
9
9
|
builder (2.1.2)
|
10
|
-
couch_potato (0.5.
|
10
|
+
couch_potato (0.5.7)
|
11
11
|
activemodel
|
12
12
|
couchrest (>= 1.0.1)
|
13
13
|
json
|
@@ -36,7 +36,7 @@ PLATFORMS
|
|
36
36
|
|
37
37
|
DEPENDENCIES
|
38
38
|
activesupport (~> 3.0.0)
|
39
|
-
couch_potato (= 0.5.
|
39
|
+
couch_potato (= 0.5.7)
|
40
40
|
couchrest (= 1.0.1)
|
41
41
|
mattmatt-validatable (= 1.8.4)
|
42
42
|
mocha
|
data/lib/simply_stored.rb
CHANGED
@@ -5,10 +5,10 @@ unless defined?(SimplyStored)
|
|
5
5
|
require File.expand_path(File.dirname(__FILE__) + '/simply_stored/class_methods_base')
|
6
6
|
|
7
7
|
module SimplyStored
|
8
|
-
VERSION = '0.6.
|
8
|
+
VERSION = '0.6.7'
|
9
9
|
class Error < RuntimeError; end
|
10
10
|
class RecordNotFound < RuntimeError; end
|
11
11
|
end
|
12
12
|
|
13
13
|
require File.expand_path(File.dirname(__FILE__) + '/simply_stored/couch')
|
14
|
-
end
|
14
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simply_stored
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 0.6.
|
9
|
+
- 7
|
10
|
+
version: 0.6.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Mathias Meyer, Jonathan Weiss
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-08-
|
18
|
+
date: 2011-08-11 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
@@ -85,12 +85,12 @@ dependencies:
|
|
85
85
|
requirements:
|
86
86
|
- - "="
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
hash:
|
88
|
+
hash: 5
|
89
89
|
segments:
|
90
90
|
- 0
|
91
91
|
- 5
|
92
|
-
-
|
93
|
-
version: 0.5.
|
92
|
+
- 7
|
93
|
+
version: 0.5.7
|
94
94
|
name: couch_potato
|
95
95
|
prerelease: false
|
96
96
|
type: :runtime
|