fluffy-ruby 0.0.3 → 0.0.4

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
2
  SHA1:
3
- metadata.gz: bd1f2cc767052443b946825acf9e028ba98da81d
4
- data.tar.gz: 96f2024ad746cce397b1dfc6ee7ac24c6956d804
3
+ metadata.gz: ea0cf3d34b3589985c7043c95e39937e688a8ea8
4
+ data.tar.gz: 8d873317e1f26b2a77fe2c05b49180d97b266ec2
5
5
  SHA512:
6
- metadata.gz: ac7f882c0267749c2d48ea8273b4d340d43227bcc1e6b2cb5b249fa92529b83db9e9e176345a30d069e45653f3d480425a28a42e991267e737b95546304e54c3
7
- data.tar.gz: dd8212175c7dc2672ec511cc1c089e14956236d6de8003b37b93792dff56177e916777108189e0776ad321dbfe0e9802ed8cbd39a5d631bab3fdf0fc63a8ca0a
6
+ metadata.gz: 6312533d92464a330b1dcb5a55f2aad638527bee5a510e4355704f72d420b081ca5310791c0b0e96b8a6f59cc95ed5121158ab7217758ccaf42494ebb29f04ad
7
+ data.tar.gz: 5d4bf11dc0586e1761cf0d4332c9ffdf1ffcd755f81c59934d82d38736dfeab3a23407e2504402c57379d8de61afaa419b8aff6292913965781d9b66ae5d349d
@@ -41,7 +41,7 @@ module Fluffy
41
41
  # @return [Hash, nil] API response
42
42
  #
43
43
  def update(name:, **params)
44
- @@api.post(endpoint: self.endpoint + [name], params: params)
44
+ @@api.patch(endpoint: self.endpoint + [name], params: params)
45
45
  end
46
46
 
47
47
  # Delete an entry from the session addressbook
@@ -39,7 +39,7 @@ module Fluffy
39
39
  # @return [Hash, nil] API response
40
40
  #
41
41
  def update(name:, **params)
42
- @@api.post(endpoint: self.endpoint + [name], params: params)
42
+ @@api.patch(endpoint: self.endpoint + [name], params: params)
43
43
  end
44
44
 
45
45
  # Delete an entry from the session chains
@@ -39,7 +39,7 @@ module Fluffy
39
39
  # @return [Hash, nil] API response
40
40
  #
41
41
  def update(name:, **params)
42
- @@api.post(endpoint: self.endpoint + [name], params: params)
42
+ @@api.patch(endpoint: self.endpoint + [name], params: params)
43
43
  end
44
44
 
45
45
  # Delete an entry from the session interfaces
@@ -39,7 +39,7 @@ module Fluffy
39
39
  # @return [Hash, nil] API response
40
40
  #
41
41
  def update(name:, **params)
42
- @@api.post(endpoint: self.endpoint + [name], params: params)
42
+ @@api.patch(endpoint: self.endpoint + [name], params: params)
43
43
  end
44
44
 
45
45
  # Delete an entry from the session rules
@@ -39,7 +39,7 @@ module Fluffy
39
39
  # @return [Hash, nil] API response
40
40
  #
41
41
  def update(name:, **params)
42
- @@api.post(endpoint: self.endpoint + [name], params: params)
42
+ @@api.patch(endpoint: self.endpoint + [name], params: params)
43
43
  end
44
44
 
45
45
  # Delete an entry from the session services
@@ -1,5 +1,5 @@
1
1
  module Fluffy
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
 
4
4
  def self.version
5
5
  VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluffy-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matteo Cerutti