cxf 0.0.7 → 0.0.8

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
  SHA256:
3
- metadata.gz: c123fda538897107fd834d22ba99bd34af42f958169df7c319b76cdbb34f0153
4
- data.tar.gz: 69b588b4a37f37b321178a555fc4ef9aff6987c6e0aac41595dc6058e2b83be6
3
+ metadata.gz: 87b5b469db91be135d0c9d51f542cd8ac55018185fdb483494d7e890c9eb7b02
4
+ data.tar.gz: 33c7250ad7a53edf5f3c5edbbf190b10ccfdeb557c7bbfd55c977b6955bd9964
5
5
  SHA512:
6
- metadata.gz: 6f7d29677c76eb5122f41f066e381d5dd23c8e2ffe8ff2b4657d93a6f3629892f7587a9830e7c0b2bcc00966c6f383ffccbbd425e9190395e0d515b2ef8a8071
7
- data.tar.gz: fd8df808d7f7ecf6b11bd1c584ff29326b49177a10f5bfbf97550f30e19c4d0fbf465e7c19d01caab3060ae1d8e31ffb50aea23fac3f9615123af3388e57c242
6
+ metadata.gz: 5d1ad4b14251ffdd1d79cad7039811f0c9c21b20a6b9f15717665367dfc6faee96839134866e29f473d4dbddcfb00c74978d57efce0254f11360a1db1d669dbd
7
+ data.tar.gz: d8d9e887757172158c488625366459fb54f62960f6069883a08bf8010f7f07ac75d6652f51e471b2662c6bfb2b2da3dedd33b2f1304c5ade9f9cadb9d1cef5ab
@@ -22,7 +22,7 @@ module ContentPrints
22
22
  # }
23
23
  # @data = @cxf_user.get_content_prints(options, true)
24
24
  def get_content_prints(options = nil, use_post = true)
25
- get_query_results('/content/content-prints', options, use_post)
25
+ get_query_results('/content/prints', options, use_post)
26
26
  end
27
27
 
28
28
  # === Get content print.
@@ -41,7 +41,7 @@ module ContentPrints
41
41
  # }
42
42
  # @data = @cxf_user.get_content_print(1, options)
43
43
  def get_content_print(id, options = nil)
44
- @client.raw('get', "/content/content-prints/#{id}", options, nil)
44
+ @client.raw('get', "/content/prints/#{id}", options, nil)
45
45
  end
46
46
 
47
47
  # === Create content print.
@@ -61,7 +61,7 @@ module ContentPrints
61
61
  #
62
62
  # @data = @cxf_user.create_content_print(data, options)
63
63
  def create_content_print(data, options = nil)
64
- @client.raw('post', '/content/content-prints', options, data_transform(data))
64
+ @client.raw('post', '/content/prints', options, data_transform(data))
65
65
  end
66
66
 
67
67
  # === Update content print.
@@ -78,7 +78,7 @@ module ContentPrints
78
78
  # }
79
79
  # @data = @cxf_user.update_content_print(5, data)
80
80
  def update_content_print(id, data, options = nil)
81
- @client.raw('put', "/content/content-prints/#{id}", options, data_transform(data))
81
+ @client.raw('put', "/content/prints/#{id}", options, data_transform(data))
82
82
  end
83
83
 
84
84
  # === Delete content print.
@@ -90,6 +90,6 @@ module ContentPrints
90
90
  # ==== Example
91
91
  # @data = @cxf_user.delete_content_print(6)
92
92
  def delete_content_print(id)
93
- @client.raw('delete', "/content/content-prints/#{id}", nil, nil)
93
+ @client.raw('delete', "/content/prints/#{id}", nil, nil)
94
94
  end
95
95
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cxf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ruben Gomez Garcia, Omar Mora, Luis Hesiquio