paperclip-storage-ftp 1.1.0.rc2 → 1.1.0
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/README.md +10 -0
- data/paperclip-storage-ftp.gemspec +1 -1
- metadata +9 -6
data/README.md
CHANGED
|
@@ -67,6 +67,16 @@ class User < ActiveRecord::Base
|
|
|
67
67
|
end
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
+
## Changelog
|
|
71
|
+
|
|
72
|
+
### 1.1.0
|
|
73
|
+
|
|
74
|
+
Mostly performance enhancements
|
|
75
|
+
|
|
76
|
+
* Use one thread per server to upload assets to multiple servers in parallel [#10](https://github.com/xing/paperclip-storage-ftp/issues/10)
|
|
77
|
+
* Avoid excessive reconnects to reduce overall upload time
|
|
78
|
+
* Close connnection immediately after being used
|
|
79
|
+
|
|
70
80
|
## Contributing
|
|
71
81
|
|
|
72
82
|
1. Fork it
|
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
|
|
|
11
11
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
12
12
|
gem.name = "paperclip-storage-ftp"
|
|
13
13
|
gem.require_paths = ["lib"]
|
|
14
|
-
gem.version = "1.1.0
|
|
14
|
+
gem.version = "1.1.0"
|
|
15
15
|
|
|
16
16
|
gem.add_dependency("paperclip")
|
|
17
17
|
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: paperclip-storage-ftp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
version: 1.1.0
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 1.1.0
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Sebastian Röbke
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-07-
|
|
12
|
+
date: 2013-07-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: paperclip
|
|
@@ -158,14 +158,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
159
|
segments:
|
|
160
160
|
- 0
|
|
161
|
-
hash:
|
|
161
|
+
hash: 197284226891016539
|
|
162
162
|
version: '0'
|
|
163
163
|
none: false
|
|
164
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
165
|
requirements:
|
|
166
|
-
- - ! '
|
|
166
|
+
- - ! '>='
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
|
-
|
|
168
|
+
segments:
|
|
169
|
+
- 0
|
|
170
|
+
hash: 197284226891016539
|
|
171
|
+
version: '0'
|
|
169
172
|
none: false
|
|
170
173
|
requirements: []
|
|
171
174
|
rubyforge_project:
|