brick_ftp 0.4.1 → 0.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 92d3ce682518051a69067c5739ee48f37f2d7f76
4
- data.tar.gz: 9efd027f47a68fd69365d2f0d23c44c1fb3af8ee
3
+ metadata.gz: efcf14ff7da3058bb071b4a9251b5a5095592fa2
4
+ data.tar.gz: 5623fd52d961f55413e969d2f9fe052a1a7bf15a
5
5
  SHA512:
6
- metadata.gz: 7a7c732bd25c9ab66c0fdc1d11601db4d90bbde472db7542730525c729599c09c2851aa3de609a12de19597ba26d3781cb4778a3c3eac4019cc9b44076254d12
7
- data.tar.gz: 148c07f0b5cf4e3c1851efcbe1634c81a9d822b876e9da49283fb2ec14c931ae0fd451f9731f90e3b8d814fd051114d18c7a9beeb78f089c2713eaf39013d35d
6
+ metadata.gz: b67ecd716f8638a20c78503089564d8422f975f22efa42cd1396898c443ee6ee2f4c61ea783f1c0752b1b58b2bdfbde2d802ec7936f4be2dc20d23285ba782f4
7
+ data.tar.gz: 0432c3ce5cb5f19d59f2b003a6bdf4dc0f612d759b067a5b2915b9cf46d882e21a0440b7484422aff31facde3ca2adda6f1f9825f9beaf91978c09a7d98e451f
data/CHANGELOG.md CHANGED
@@ -2,16 +2,29 @@ Changelog
2
2
  ====
3
3
 
4
4
 
5
- [unreleased](https://github.com/koshigoe/brick_ftp/compare/v0.4.1...master)
5
+ [unreleased](https://github.com/koshigoe/brick_ftp/compare/v0.4.2...master)
6
6
  ----
7
7
 
8
- [Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.4.1...master)
8
+ [Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.4.2...master)
9
9
 
10
10
  ### Enhancements:
11
11
 
12
12
  ### Fixed Bugs:
13
13
 
14
14
 
15
+ [0.4.2](https://github.com/koshigoe/brick_ftp/compare/v0.4.1...v0.4.2)
16
+ ----
17
+
18
+ [Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.4.1...v0.4.2)
19
+
20
+ ### Enhancements:
21
+
22
+ - [#62](https://github.com/koshigoe/brick_ftp/pull/62) Add property `display_name` to File API ([terencedignon](https://github.com/terencedignon))
23
+ - [#63](https://github.com/koshigoe/brick_ftp/pull/63) Add property `display_name` to Folder API
24
+
25
+ ### Fixed Bugs:
26
+
27
+
15
28
  [0.4.1](https://github.com/koshigoe/brick_ftp/compare/v0.4.0...v0.4.1)
16
29
  ----
17
30
 
@@ -12,6 +12,7 @@ module BrickFTP
12
12
  attribute :crc32
13
13
  attribute :md5
14
14
  attribute :download_uri
15
+ attribute :display_name
15
16
  attribute :provided_mtime
16
17
  attribute :permissions
17
18
  end
@@ -6,6 +6,7 @@ module BrickFTP
6
6
 
7
7
  attribute :id
8
8
  attribute :path
9
+ attribute :display_name
9
10
  attribute :type
10
11
  attribute :size
11
12
  attribute :mtime
@@ -1,3 +1,3 @@
1
1
  module BrickFTP
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brick_ftp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - koshigoe