dbox 0.7.5 → 0.7.6

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.
Files changed (5) hide show
  1. data/History.txt +10 -1
  2. data/VERSION +1 -1
  3. data/dbox.gemspec +2 -2
  4. data/lib/dbox/syncer.rb +1 -1
  5. metadata +4 -4
@@ -1,6 +1,15 @@
1
- == 0.7.4 / 2013-09-11
1
+ == 0.7.6 / 2013-10-02
2
+ * Bug Fixes
3
+ * When downloading files, write in binary (issue with Ruby 1.9 running inside Rails environment).
4
+
5
+ == 0.7.5 / 2013-09-11
2
6
  * Minor Enhancements
3
7
  * Added API call & command to retrieve metadata about a remote folder.
8
+ * Turned off SSL peer verification.
9
+
10
+ == 0.7.4 / 2013-04-09
11
+ * Bug Fixes
12
+ * Added following of redirects on streaming downloads.
4
13
 
5
14
  == 0.7.3 / 2012-12-23
6
15
  * Minor Enhancements
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.5
1
+ 0.7.6
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "dbox"
8
- s.version = "0.7.5"
8
+ s.version = "0.7.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ken Pratt"]
12
- s.date = "2013-09-11"
12
+ s.date = "2013-10-02"
13
13
  s.description = "An easy-to-use Dropbox client with fine-grained control over syncs."
14
14
  s.email = "ken@kenpratt.net"
15
15
  s.executables = ["dbox"]
@@ -390,7 +390,7 @@ module Dbox
390
390
 
391
391
  # download to temp file
392
392
  tmp = generate_tmpfilename(file[:path])
393
- File.open(tmp, "w") do |f|
393
+ File.open(tmp, "wb") do |f|
394
394
  api.get_file(remote_path, f, stream)
395
395
  end
396
396
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dbox
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 7
9
- - 5
10
- version: 0.7.5
9
+ - 6
10
+ version: 0.7.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ken Pratt
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-09-11 00:00:00 Z
18
+ date: 2013-10-02 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: multipart-post