Completed
Push — master ( b36053...c3f76a )
by John
02:06 queued 01:00
created

Avatars.new()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
require 'ringcentral-avatars/creator'
0 ignored issues
show
Coding Style introduced by
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
Coding Style introduced by
This module should have a documentation comment as per coding style.
Loading history...
5
    VERSION = '0.1.0'
6
7
    class << self
8
      def new(client)
9
        RingCentral::Avatars::Creator.new client
10
      end
11
    end
12
  end
13
end