kalibro_client 1.2.0 → 1.2.2
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c0ee391e685cb6a03a8c466df432f355274b40d
|
4
|
+
data.tar.gz: c7acea00d02253f5c744fc89604a9b929ce268ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ccce0b0cffbd54f5fc11fea11c2e26b3290004093886418c66239451d686270440d7316b11ad488c432487e233407dbdfd9fafd746c6df48e8e66290f5fe522
|
7
|
+
data.tar.gz: 2d54c3118a502214ef28a51757d26f133982f65e0a8b5314e14c0a2a8f3eb2373102ff319462d42b5dfa1b811b799fca165bd3459cc4c5cbb6394a21c339121e
|
@@ -42,7 +42,7 @@ module KalibroClient
|
|
42
42
|
|
43
43
|
# FYI: this is a spaceship operator
|
44
44
|
def <=>(other)
|
45
|
-
return nil if [[:FUNCTION, :METHOD], [:METHOD, :FUNCTION]].include?([self.type, other.type])
|
45
|
+
return nil if [[:FUNCTION, :METHOD], [:METHOD, :FUNCTION], [:FUNCTION, :CLASS], [:CLASS, :FUNCTION]].include?([self.type, other.type])
|
46
46
|
|
47
47
|
if self.type == other.type
|
48
48
|
return 0
|
@@ -104,12 +104,17 @@ describe KalibroClient::Entities::Miscellaneous::Granularity do
|
|
104
104
|
context 'comparing unrelated ones' do
|
105
105
|
let(:function_granularity) { FactoryGirl.build(:granularity, type: KalibroClient::Entities::Miscellaneous::Granularity::FUNCTION) }
|
106
106
|
let(:method_granularity) { FactoryGirl.build(:granularity, type: KalibroClient::Entities::Miscellaneous::Granularity::METHOD) }
|
107
|
+
let(:class_granularity) { FactoryGirl.build(:granularity, type: KalibroClient::Entities::Miscellaneous::Granularity::CLASS) }
|
107
108
|
|
108
109
|
it 'should raise an ArgumentError' do
|
109
110
|
expect { function_granularity < method_granularity }.to raise_error(ArgumentError)
|
110
111
|
expect { function_granularity <= method_granularity }.to raise_error(ArgumentError)
|
111
112
|
expect { function_granularity >= method_granularity }.to raise_error(ArgumentError)
|
112
113
|
expect { function_granularity > method_granularity }.to raise_error(ArgumentError)
|
114
|
+
expect { function_granularity < class_granularity }.to raise_error(ArgumentError)
|
115
|
+
expect { function_granularity <= class_granularity }.to raise_error(ArgumentError)
|
116
|
+
expect { function_granularity >= class_granularity }.to raise_error(ArgumentError)
|
117
|
+
expect { function_granularity > class_granularity }.to raise_error(ArgumentError)
|
113
118
|
end
|
114
119
|
end
|
115
120
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kalibro_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Quadros Miranda
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2015-08-
|
14
|
+
date: 2015-08-21 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bundler
|