ruby-box 1.9.0 → 1.9.1
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.
- checksums.yaml +8 -8
- data/VERSION +1 -1
- data/lib/ruby-box/folder.rb +2 -1
- data/ruby-box.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NWJjZTM5ZGZhYjYyNTM5YzRlNTE4ODE0MGZjZDg4ZTIzNjIwYThlNQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTY5MmM5NzExYWEzMGQ2NWMxMjk1OWI2OTIyZDZiMDVjZGUyZThhNw==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OGUxYzU1MWE5NmExZTE5ZTExNTFiMzc3ZjdlZTJmOTJjMzE0MThmNmVhMzNh
|
10
|
+
OWM3ZDFkYWI3NDNiNjcxYzAxNzkzMGZhNTMzOTNkNzc3ZjMxZTc3OGRiZjRl
|
11
|
+
YzI2ODllMDg5OWIyZTlkZDgwYTI0N2NkMjczNTg0NmJmMmNjYzI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDIxODYzNWU4YjExY2QzZGVlNDgxMDc5MjhjM2ZkODRhMmU4MWViMGI3Mjlj
|
14
|
+
ZThiMWMwZjFlYjMwZGQyYzdmMzM2NzYzOGE2YzIxOWViNDI2ODJmYWY2NDk0
|
15
|
+
MmYxN2UzNzVlMGI3NTVmZTg0ZDJjMmE3ZGU3MDczM2MxYzJlOWI=
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.9.
|
1
|
+
1.9.1
|
data/lib/ruby-box/folder.rb
CHANGED
@@ -35,9 +35,10 @@ module RubyBox
|
|
35
35
|
rescue
|
36
36
|
# we were not given context information about this conflict.
|
37
37
|
# attempt to lookup the file.
|
38
|
-
file = files(filename).pop
|
38
|
+
file = files(filename, 1000).pop
|
39
39
|
end
|
40
40
|
|
41
|
+
raise e unless file # re-raise the ItemNameInUse exception.
|
41
42
|
resp = file.update_content( data )
|
42
43
|
end
|
43
44
|
end
|
data/ruby-box.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "ruby-box"
|
8
|
-
s.version = "1.9.
|
8
|
+
s.version = "1.9.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Attachments.me"]
|
12
|
-
s.date = "2013-07-
|
12
|
+
s.date = "2013-07-31"
|
13
13
|
s.description = "ruby gem for box.com 2.0 api"
|
14
14
|
s.email = "ben@attachments.me"
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-box
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.9.
|
4
|
+
version: 1.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Attachments.me
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-07-
|
11
|
+
date: 2013-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multipart-post
|