brick_ftp 1.0.0.rc1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -4
- data/lib/brick_ftp/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 776279ef2f09b842d7a59865c84df4f22ea890eda837d16d4aae614fe8e5e247
|
4
|
+
data.tar.gz: 39033de2755ac6b275ef08c2803c223af2d226b2366645c1964e4e49d5289d6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e404fb4fde9f08d3f7cd1f1ee52b15337d53c8026d15116fb011dad26f63455edfc58aa6e1d89eb9e1b844cc179f042985200bc47e884d0b8c575f108350773
|
7
|
+
data.tar.gz: d60af19f6f3ac2c547ba09248a89fa63ba70bdc1af017808fcf510e8da5c6d5e9a58a1b328ed1b605cb76dc23296425e05ff67bc78716e2c06281b7968ed32d3
|
data/CHANGELOG.md
CHANGED
@@ -2,10 +2,10 @@ Changelog
|
|
2
2
|
====
|
3
3
|
|
4
4
|
|
5
|
-
[unreleased](https://github.com/koshigoe/brick_ftp/compare/v1.0.0
|
5
|
+
[unreleased](https://github.com/koshigoe/brick_ftp/compare/v1.0.0...master)
|
6
6
|
----
|
7
7
|
|
8
|
-
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v1.0.0
|
8
|
+
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v1.0.0...master)
|
9
9
|
|
10
10
|
### Enhancements:
|
11
11
|
|
@@ -14,10 +14,10 @@ Changelog
|
|
14
14
|
### Breaking Changes:
|
15
15
|
|
16
16
|
|
17
|
-
[v1.0.0
|
17
|
+
[v1.0.0](https://github.com/koshigoe/brick_ftp/compare/v0.8.2...v1.0.0)
|
18
18
|
----
|
19
19
|
|
20
|
-
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.8.2...v1.0.0
|
20
|
+
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.8.2...v1.0.0)
|
21
21
|
|
22
22
|
### Enhancements:
|
23
23
|
|
@@ -41,6 +41,23 @@ Changelog
|
|
41
41
|
- [#111](https://github.com/koshigoe/brick_ftp/pull/111) Allow to upload file using `StringIO`
|
42
42
|
- ignore `chunk_size:` option if `io` is a `StringIO`
|
43
43
|
|
44
|
+
|
45
|
+
[0.8.3](https://github.com/koshigoe/brick_ftp/compare/v0.8.2...v0.8.3)
|
46
|
+
----
|
47
|
+
|
48
|
+
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.8.2...v0.8.3)
|
49
|
+
|
50
|
+
### Enhancements:
|
51
|
+
|
52
|
+
- [#114](https://github.com/koshigoe/brick_ftp/pull/114) Allow to upload file using `StringIO`
|
53
|
+
|
54
|
+
### Fixed Bugs:
|
55
|
+
|
56
|
+
### Breaking Changes:
|
57
|
+
|
58
|
+
### Others
|
59
|
+
|
60
|
+
|
44
61
|
[0.8.2](https://github.com/koshigoe/brick_ftp/compare/v0.8.1...v0.8.2)
|
45
62
|
----
|
46
63
|
|
data/lib/brick_ftp/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brick_ftp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- koshigoe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -283,9 +283,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
283
283
|
version: 2.3.0
|
284
284
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
285
285
|
requirements:
|
286
|
-
- - "
|
286
|
+
- - ">="
|
287
287
|
- !ruby/object:Gem::Version
|
288
|
-
version:
|
288
|
+
version: '0'
|
289
289
|
requirements: []
|
290
290
|
rubyforge_project:
|
291
291
|
rubygems_version: 2.7.3
|