rubocop-sketchup 0.11.0 → 0.12.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d71a77696ad942ac91685ae035914fe2c87e8870729e938f6848a7b46f550159
|
4
|
+
data.tar.gz: 5b9567e6872c22014c3ec5bd4636cf8a3bde64bb40e553f778ef1f4fea69678c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d23f7f3e84377eb935e503decaeec3f5feea98e6f16cb937fb5310d58dc7aa71e5841ab845255ba30b13be77b269b3c8e13ec2afc4a4fe0b166ca4370217692b
|
7
|
+
data.tar.gz: 26fcd65fdb0fea1d84705f712c96524fefe96884532098837347f89de41db3a2e24480ccc340e1b18f413b21fec45507dedad9d365b3ca5071d71282b5ae8c20
|
@@ -34,6 +34,21 @@ module RuboCop
|
|
34
34
|
|
35
35
|
FEATURES = [
|
36
36
|
|
37
|
+
{
|
38
|
+
version: 'SketchUp 2020.0',
|
39
|
+
types: {
|
40
|
+
method: [
|
41
|
+
'Geom.tesselate',
|
42
|
+
'Sketchup::Layer#display_name',
|
43
|
+
'Sketchup::Model#active_path=',
|
44
|
+
'Sketchup::Model#drawing_element_visible?',
|
45
|
+
'Sketchup::Page#get_drawingelement_visibility',
|
46
|
+
'Sketchup::Page#set_drawingelement_visibility',
|
47
|
+
'Sketchup::View#text_bounds',
|
48
|
+
],
|
49
|
+
},
|
50
|
+
},
|
51
|
+
|
37
52
|
{
|
38
53
|
version: 'SketchUp 2019.2',
|
39
54
|
types: {
|
@@ -1066,6 +1081,7 @@ module RuboCop
|
|
1066
1081
|
|
1067
1082
|
INSTANCE_METHODS = %i[
|
1068
1083
|
active_path
|
1084
|
+
active_path=
|
1069
1085
|
active_section_plane
|
1070
1086
|
active_section_plane=
|
1071
1087
|
active_tool
|
@@ -1089,6 +1105,7 @@ module RuboCop
|
|
1089
1105
|
count_used_instances
|
1090
1106
|
dash_scale
|
1091
1107
|
days_remaining
|
1108
|
+
drawing_element_visible?
|
1092
1109
|
edit_transform
|
1093
1110
|
end_attached_to
|
1094
1111
|
end_attached_to=
|
@@ -1100,6 +1117,7 @@ module RuboCop
|
|
1100
1117
|
fov_is_height?
|
1101
1118
|
georeferenced?
|
1102
1119
|
get_classification_value
|
1120
|
+
get_drawingelement_visibility
|
1103
1121
|
get_glued_instances
|
1104
1122
|
get_texture_projection
|
1105
1123
|
has_aligned_text?
|
@@ -1149,6 +1167,7 @@ module RuboCop
|
|
1149
1167
|
set_can_close
|
1150
1168
|
set_classification_value
|
1151
1169
|
set_download_progress_callback
|
1170
|
+
set_drawingelement_visibility
|
1152
1171
|
set_full_security
|
1153
1172
|
set_on_closed
|
1154
1173
|
set_texture_projection
|
@@ -1160,6 +1179,7 @@ module RuboCop
|
|
1160
1179
|
start_attached_to
|
1161
1180
|
start_attached_to=
|
1162
1181
|
status_bar_text
|
1182
|
+
text_bounds
|
1163
1183
|
unit_vector?
|
1164
1184
|
unload_schema
|
1165
1185
|
upper_left
|
@@ -66,6 +66,7 @@ module RuboCop
|
|
66
66
|
#
|
67
67
|
# The second item in the array is maintenance annotation
|
68
68
|
VALID_VERSIONS = [
|
69
|
+
[2020.0, 0],
|
69
70
|
[2019.2, 0],
|
70
71
|
[2019.0, 0], # SketchUp dropped M notation as of SU2019.
|
71
72
|
[2019, 0], # Documentation still refer to SU2019 instead of SU2019.0
|
data/rubocop-sketchup.gemspec
CHANGED
metadata
CHANGED
@@ -1,35 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-sketchup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Trimble Inc, SketchUp Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "<="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0.75'
|
20
17
|
- - ">="
|
21
18
|
- !ruby/object:Gem::Version
|
22
19
|
version: '0.75'
|
20
|
+
- - "<="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0.76'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - "<="
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '0.75'
|
30
27
|
- - ">="
|
31
28
|
- !ruby/object:Gem::Version
|
32
29
|
version: '0.75'
|
30
|
+
- - "<="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0.76'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: bundler
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|