Issues (7)

lib/ringcentral-avatars.rb (2 issues)

1
require 'ringcentral-avatars/creator'
0 ignored issues
show
Your coding style requires you to use snake case for source file names. That is all lower case characters with underscores to seperate words.
Loading history...
2
3
module RingCentral
4
  module Avatars
0 ignored issues
show
This module should have a documentation comment as per coding style.
Loading history...
5
    VERSION = '0.5.0'.freeze
6
7
    class << self
8
      def new(client, opts = {})
9
        RingCentral::Avatars::Creator.new client, opts
10
      end
11
    end
12
  end
13
end
14