shelly 0.1.30 → 0.1.31

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.1.31 / 2012-10-10
2
+
3
+ * [bug] Writing backups to disk in binary mode to avoid ascii/utf8 conversion errors.
4
+
1
5
  ## 0.1.30 / 2012-10-05
2
6
 
3
7
  * [refactoring] Improved output message in ```backup list```
data/lib/shelly/client.rb CHANGED
@@ -196,7 +196,7 @@ module Shelly
196
196
  end
197
197
 
198
198
  def download_backup(cloud, filename, progress_callback = nil)
199
- File.open(filename, "w") do |out|
199
+ File.open(filename, "wb") do |out|
200
200
  process_response = lambda do |response|
201
201
  response.read_body do |chunk|
202
202
  out.write(chunk)
@@ -1,3 +1,3 @@
1
1
  module Shelly
2
- VERSION = "0.1.30"
2
+ VERSION = "0.1.31"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shelly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.30
4
+ version: 0.1.31
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-05 00:00:00.000000000 Z
12
+ date: 2012-10-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
@@ -91,38 +91,6 @@ dependencies:
91
91
  - - ! '>='
92
92
  - !ruby/object:Gem::Version
93
93
  version: '0'
94
- - !ruby/object:Gem::Dependency
95
- name: ruby_gntp
96
- requirement: !ruby/object:Gem::Requirement
97
- none: false
98
- requirements:
99
- - - ! '>='
100
- - !ruby/object:Gem::Version
101
- version: '0'
102
- type: :development
103
- prerelease: false
104
- version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
- requirements:
107
- - - ! '>='
108
- - !ruby/object:Gem::Version
109
- version: '0'
110
- - !ruby/object:Gem::Dependency
111
- name: rb-fsevent
112
- requirement: !ruby/object:Gem::Requirement
113
- none: false
114
- requirements:
115
- - - ! '>='
116
- - !ruby/object:Gem::Version
117
- version: '0'
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
- requirements:
123
- - - ! '>='
124
- - !ruby/object:Gem::Version
125
- version: '0'
126
94
  - !ruby/object:Gem::Dependency
127
95
  name: fakefs
128
96
  requirement: !ruby/object:Gem::Requirement
@@ -355,23 +323,5 @@ rubygems_version: 1.8.24
355
323
  signing_key:
356
324
  specification_version: 3
357
325
  summary: Shelly Cloud command line tool
358
- test_files:
359
- - spec/helpers.rb
360
- - spec/input_faker.rb
361
- - spec/shelly/app_spec.rb
362
- - spec/shelly/backup_spec.rb
363
- - spec/shelly/cli/backup_spec.rb
364
- - spec/shelly/cli/config_spec.rb
365
- - spec/shelly/cli/deploy_spec.rb
366
- - spec/shelly/cli/file_spec.rb
367
- - spec/shelly/cli/main_spec.rb
368
- - spec/shelly/cli/runner_spec.rb
369
- - spec/shelly/cli/user_spec.rb
370
- - spec/shelly/client_spec.rb
371
- - spec/shelly/cloudfile_spec.rb
372
- - spec/shelly/download_progress_bar_spec.rb
373
- - spec/shelly/model_spec.rb
374
- - spec/shelly/structure_validator_spec.rb
375
- - spec/shelly/user_spec.rb
376
- - spec/spec_helper.rb
377
- - spec/thor/options_spec.rb
326
+ test_files: []
327
+ has_rdoc: