Completed
Push — master ( b7118a...c3970f )
by John
01:10
created

Base   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 14
Duplicated Lines 0 %
Metric Value
dl 0
loc 14
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A content_type() 0 3 1
A body() 0 3 1
A url() 0 3 1
A method() 0 3 1
1
module RingCentralSdk::REST::Request
2
  class Base
3
    def method()
4
      return 'get'
5
    end
6
    def url()
7
      return ''
8
    end
9
    def content_type()
10
      return ''
11
    end
12
    def body()
13
      return ''
14
    end
15
  end
16
end