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.
- data/History.txt +10 -1
- data/VERSION +1 -1
- data/dbox.gemspec +2 -2
- data/lib/dbox/syncer.rb +1 -1
- metadata +4 -4
data/History.txt
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
|
-
== 0.7.
|
|
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.
|
|
1
|
+
0.7.6
|
data/dbox.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "dbox"
|
|
8
|
-
s.version = "0.7.
|
|
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-
|
|
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"]
|
data/lib/dbox/syncer.rb
CHANGED
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:
|
|
4
|
+
hash: 15
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 7
|
|
9
|
-
-
|
|
10
|
-
version: 0.7.
|
|
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-
|
|
18
|
+
date: 2013-10-02 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: multipart-post
|