rhosync 2.1.18.beta1 → 2.1.18.beta2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ ## 2.1.18.beta2
2
+ * #31245585 - blob_attribs in bulk database missing overwrite flag
3
+
1
4
  ## 2.1.18.beta1
2
5
  * #31161737 - PingJob handles missing user ids or users with no clients
3
6
 
@@ -176,7 +176,11 @@ module Rhosync
176
176
  blob_attribs = []
177
177
  schema['property'].each do |key,value|
178
178
  values = value ? value.split(',') : []
179
- blob_attribs << key if values.include?('blob')
179
+ if values.include?('blob')
180
+ attrib = key.dup
181
+ attrib << "," + (values.include?('overwrite') ? '1' : '0')
182
+ blob_attribs << attrib
183
+ end
180
184
  end
181
185
  blob_attribs.sort.join(',')
182
186
  end
@@ -1,3 +1,3 @@
1
1
  module Rhosync
2
- VERSION = '2.1.18.beta1'
2
+ VERSION = '2.1.18.beta2'
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhosync
3
3
  version: !ruby/object:Gem::Version
4
- hash: 2417247871
4
+ hash: -1076473166
5
5
  prerelease: 7
6
6
  segments:
7
7
  - 2
8
8
  - 1
9
9
  - 18
10
10
  - beta
11
- - 1
12
- version: 2.1.18.beta1
11
+ - 2
12
+ version: 2.1.18.beta2
13
13
  platform: ruby
14
14
  authors:
15
15
  - Rhomobile
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2012-06-13 00:00:00 Z
20
+ date: 2012-06-14 00:00:00 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: sinatra