brick_ftp 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 7b5f39154f9f9cb909e38e0a7b3b20e7da36921d348340f21186b272cc06332b
4
- data.tar.gz: 1cda57b5a7f2c3170ec94cbda3dc0c545a056aab7a1fb1893aed5ef0382d87d8
2
+ SHA1:
3
+ metadata.gz: 122484c6dd656f5d580855672b0625d7c4929f5e
4
+ data.tar.gz: 39dc3bba8c74d45d6903ee6f69716035061e41d5
5
5
  SHA512:
6
- metadata.gz: c678bfe33641ef68904283954d8fab9c8756b75265798fe53bec129fb7c65a30259a954fb894e3d029ded471d37b98d268a8d5f860d404e5d3a320f4b082c563
7
- data.tar.gz: 508b6cdb4d5c1f7e250d2ffe48fd966d87add82ae8e33538d7b7f8c99cee5c5f08af67b05b3d2ba5ef7ca8d183829727b96576aa0e7589bc9620398450743ab7
6
+ metadata.gz: a653241c38bc91b6f215b3ed88e927cffc00a347cf24c044b5ebaedc5e35a4558d499915d45f9c73059050eae2fe903079999e00287e3a7d4a8d3dbde85a60ec
7
+ data.tar.gz: 39b19556f6c686008fceadccf1dc4c7a40362066fb68da3615d26957d435a39cf9b158b6ba539bba14ea25f64c817b6b9f90e89d2f4a809821da183b03578eb4
data/CHANGELOG.md CHANGED
@@ -2,10 +2,10 @@ Changelog
2
2
  ====
3
3
 
4
4
 
5
- [unreleased](https://github.com/koshigoe/brick_ftp/compare/v0.8.0...master)
5
+ [unreleased](https://github.com/koshigoe/brick_ftp/compare/v0.8.1...master)
6
6
  ----
7
7
 
8
- [Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.8.0...master)
8
+ [Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.8.1...master)
9
9
 
10
10
  ### Enhancements:
11
11
 
@@ -14,6 +14,20 @@ Changelog
14
14
  ### Breaking Changes:
15
15
 
16
16
 
17
+ [v0.8.1](https://github.com/koshigoe/brick_ftp/compare/v0.8.0...v0.8.1)
18
+ ----
19
+
20
+ [Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v0.8.0...v0.8.1)
21
+
22
+ ### Enhancements:
23
+
24
+ - [#94](https://github.com/koshigoe/brick_ftp/pull/94) Fix method signature of `#to_json` and `#as_json`
25
+
26
+ ### Fixed Bugs:
27
+
28
+ ### Breaking Changes:
29
+
30
+
17
31
  [v0.8.0](https://github.com/koshigoe/brick_ftp/compare/v0.7.1...v0.8.0)
18
32
  ----
19
33
 
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  [![CircleCI](https://circleci.com/gh/koshigoe/brick_ftp/tree/master.svg?style=svg)](https://circleci.com/gh/koshigoe/brick_ftp/tree/master)
2
+ [![codecov](https://codecov.io/gh/koshigoe/brick_ftp/branch/master/graph/badge.svg)](https://codecov.io/gh/koshigoe/brick_ftp)
3
+
2
4
 
3
5
  # BrickFTP
4
6
 
data/brick_ftp.gemspec CHANGED
@@ -21,6 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.required_ruby_version = '>= 2.2.0'
22
22
 
23
23
  spec.add_development_dependency 'bundler', '~> 1.12'
24
+ spec.add_development_dependency 'codecov', '~> 0.1.10'
24
25
  spec.add_development_dependency 'pry', '~> 0.10'
25
26
  spec.add_development_dependency 'rake', '~> 10.0'
26
27
  spec.add_development_dependency 'rspec', '~> 3.0'
@@ -72,12 +72,12 @@ module BrickFTP
72
72
  true
73
73
  end
74
74
 
75
- def as_json
75
+ def as_json(*_args)
76
76
  properties.dup
77
77
  end
78
78
 
79
- def to_json
80
- as_json.to_json
79
+ def to_json(*args)
80
+ as_json.to_json(*args)
81
81
  end
82
82
 
83
83
  def write_property(key, value)
@@ -86,7 +86,7 @@ module BrickFTP
86
86
  #
87
87
  # @return [Hash] a JSON serializable object
88
88
  #
89
- def as_json
89
+ def as_json(*_args)
90
90
  properties.dup
91
91
  end
92
92
  end
@@ -1,3 +1,3 @@
1
1
  module BrickFTP
2
- VERSION = '0.8.0'.freeze
2
+ VERSION = '0.8.1'.freeze
3
3
  end
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: 0.8.0
4
+ version: 0.8.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-01-31 00:00:00.000000000 Z
11
+ date: 2018-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: codecov
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.1.10
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.1.10
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: pry
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -253,7 +267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
253
267
  version: '0'
254
268
  requirements: []
255
269
  rubyforge_project:
256
- rubygems_version: 2.7.3
270
+ rubygems_version: 2.6.10
257
271
  signing_key:
258
272
  specification_version: 4
259
273
  summary: BrickFTP's REST API client.