rock_rms 9.10.0 → 9.11.0

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
  SHA256:
3
- metadata.gz: 2640ca0dcf3e580eeade6f3745d22b86e29b0661972435f169d6897735f3521c
4
- data.tar.gz: 07f00ea4b81a9e1eb04506b5b74534635bdbb6e6ef9728eaeb0793e4b6c8200b
3
+ metadata.gz: b23081923a526432875b5bd8adfd4ae0c9919bbcf2f7b1c31e221f1f6f43c759
4
+ data.tar.gz: ffb972c6a77becf7c03029c7af15d719c73564a2f3efa715fd3e7ddfc42464aa
5
5
  SHA512:
6
- metadata.gz: 73bde19a21af8a8730ecd2754aadc247d30e7fff5cec112ca89cd7c9bd13dc78257e3a122086a1f005f432ae77672715a27abf318a34259301d15383c8b69cf2
7
- data.tar.gz: c4fef3cc6e8970f1e858fc2c2b375f997b5d643c8168d0b148c4b835a609c10e7b8ef9beed0983789d34e73ce6f7164e1a6762008b130899ef18a36cee37bccb
6
+ metadata.gz: 6b4074d68ebba687263afd91aa9fc7f8e4d23ced4605549293af715316b8a0072be47a4abb5a610a9bf36841154d5fc2eb2faa239482a3d3307a50f819e8d499
7
+ data.tar.gz: 1d95449a355b7caccc3e8fa52189fbc5d86b4566b0db2f89704b28d19a170ca1c80d51b8d500c67a1c9ce50bc4e1e31b8d39a6921093dc15fa896ac6d1f9afe7
@@ -2,7 +2,7 @@ module RockRMS
2
2
  class Client
3
3
  module ContentChannelItem
4
4
  def list_content_channel_items(options = {})
5
- res = get(content_channel_items_path, options)
5
+ res = get('ContentChannelItems', options)
6
6
  Response::ContentChannelItem.format(res)
7
7
  end
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module RockRMS
2
- VERSION = '9.10.0'.freeze
2
+ VERSION = '9.11.0'.freeze
3
3
  end
@@ -1,14 +1,14 @@
1
1
  require 'spec_helper'
2
2
 
3
- RSpec.describe RockRMS::Client::ContentChannelType, type: :model do
3
+ RSpec.describe RockRMS::Client::ContentChannelItem, type: :model do
4
4
  include_context 'resource specs'
5
5
 
6
- describe '#list_content_channel_types(options = {})' do
7
- it 'returns a list of content channel types' do
8
- result = client.list_content_channel_types
6
+ describe '#list_content_channel_items(options = {})' do
7
+ it 'returns a list of content channel items' do
8
+ result = client.list_content_channel_items
9
9
  expect(result).to be_an(Array)
10
10
  expect(result.first).to have_key(:id)
11
- expect(result.first).to have_key(:name)
11
+ expect(result.first).to have_key(:title)
12
12
  end
13
13
  end
14
14
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rock_rms
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.10.0
4
+ version: 9.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-13 00:00:00.000000000 Z
11
+ date: 2024-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday