brick_ftp 1.0.0 → 1.0.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 +4 -4
- data/CHANGELOG.md +16 -2
- data/lib/brick_ftp.rb +1 -0
- data/lib/brick_ftp/types/behavior.rb +3 -1
- data/lib/brick_ftp/types/bundle.rb +3 -1
- data/lib/brick_ftp/types/bundle_content.rb +3 -1
- data/lib/brick_ftp/types/bundle_zip.rb +3 -1
- data/lib/brick_ftp/types/file.rb +3 -1
- data/lib/brick_ftp/types/file_in_bundle.rb +3 -1
- data/lib/brick_ftp/types/folder_contents_count.rb +3 -1
- data/lib/brick_ftp/types/group.rb +3 -1
- data/lib/brick_ftp/types/group_membership.rb +3 -1
- data/lib/brick_ftp/types/history.rb +3 -1
- data/lib/brick_ftp/types/ignore_undefined_attributes.rb +11 -0
- data/lib/brick_ftp/types/notification.rb +3 -1
- data/lib/brick_ftp/types/permission.rb +3 -1
- data/lib/brick_ftp/types/site_usage.rb +3 -1
- data/lib/brick_ftp/types/upload.rb +3 -1
- data/lib/brick_ftp/types/user.rb +3 -1
- data/lib/brick_ftp/types/user_api_key.rb +3 -1
- data/lib/brick_ftp/types/user_public_key.rb +3 -1
- data/lib/brick_ftp/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2af4ecd34af05635eded73b60b31e50f5be2bae550a35645d2ba6f907f922b8
|
|
4
|
+
data.tar.gz: b5e74f1754ed1ae26b2cf8dfb281c9c6ced3b3552237e5f486218663e22876fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 669f99de8bb45d74bc228590668eb01f62483345702cd4829212da5159d27c783ab37ae7c92186346b8a2643f06911bf40776a17b1a99f3faba86e890999b642
|
|
7
|
+
data.tar.gz: 5dbeb251810e1b162345bd083f3ce8f39f124d3db43a26ce792f6cbb641a142e87725b726b7b3e24f97ba1f254452580332ac760c0b9787ce9fcd5827ba9bbcc
|
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.
|
|
5
|
+
[unreleased](https://github.com/koshigoe/brick_ftp/compare/v1.0.1...master)
|
|
6
6
|
----
|
|
7
7
|
|
|
8
|
-
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v1.0.
|
|
8
|
+
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v1.0.1...master)
|
|
9
9
|
|
|
10
10
|
### Enhancements:
|
|
11
11
|
|
|
@@ -14,6 +14,20 @@ Changelog
|
|
|
14
14
|
### Breaking Changes:
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
[v1.0.1](https://github.com/koshigoe/brick_ftp/compare/v1.0.0...v1.0.1)
|
|
18
|
+
----
|
|
19
|
+
|
|
20
|
+
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v1.0.0...v1.0.1)
|
|
21
|
+
|
|
22
|
+
### Enhancements:
|
|
23
|
+
|
|
24
|
+
### Fixed Bugs:
|
|
25
|
+
|
|
26
|
+
- [#117](https://github.com/koshigoe/brick_ftp/pull/117) Ignore undefined attributes.
|
|
27
|
+
|
|
28
|
+
### Breaking Changes:
|
|
29
|
+
|
|
30
|
+
|
|
17
31
|
[v1.0.0](https://github.com/koshigoe/brick_ftp/compare/v0.8.2...v1.0.0)
|
|
18
32
|
----
|
|
19
33
|
|
data/lib/brick_ftp.rb
CHANGED
data/lib/brick_ftp/types/file.rb
CHANGED
data/lib/brick_ftp/types/user.rb
CHANGED
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.
|
|
4
|
+
version: 1.0.1
|
|
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-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -258,6 +258,7 @@ files:
|
|
|
258
258
|
- lib/brick_ftp/types/group.rb
|
|
259
259
|
- lib/brick_ftp/types/group_membership.rb
|
|
260
260
|
- lib/brick_ftp/types/history.rb
|
|
261
|
+
- lib/brick_ftp/types/ignore_undefined_attributes.rb
|
|
261
262
|
- lib/brick_ftp/types/notification.rb
|
|
262
263
|
- lib/brick_ftp/types/permission.rb
|
|
263
264
|
- lib/brick_ftp/types/site_usage.rb
|