rubocop-sketchup 1.1.0 → 1.2.0
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 +4 -4
- data/lib/rubocop/sketchup/features.rb +49 -0
- data/lib/rubocop/sketchup/sketchup_version.rb +1 -0
- data/lib/rubocop/sketchup/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d69761990813abecd3a20633643a490c07df1a341c0ba6f36131d6aedf682fe3
|
|
4
|
+
data.tar.gz: 40ccb6f930c97bb0a716ac72d36c4963849dd40f9cd4e69f3bc3d26b86e3c6d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 23b2fc55403fa6bc471e2769d7121418944901d0d30b75fa36bb7aa49c0bbdd1aa95dc1f26248cbfe5ddd1a29f88c807dcbf022612a78ff3e4029449920f1337
|
|
7
|
+
data.tar.gz: 7c389ffdda8af9df21dd805086af0a2e5863415296f9922c69c12a132402dfc5f188fca09486089bc4fb2a1c01560fd825748ac3abe7050229141f9bdf002352
|
|
@@ -41,6 +41,51 @@ module RuboCop
|
|
|
41
41
|
|
|
42
42
|
FEATURES = [
|
|
43
43
|
|
|
44
|
+
{
|
|
45
|
+
version: 'LayOut 2022.0',
|
|
46
|
+
types: {
|
|
47
|
+
method: [
|
|
48
|
+
'Layout::AutoTextDefinition#end_page',
|
|
49
|
+
'Layout::AutoTextDefinition#end_page=',
|
|
50
|
+
'Layout::AutoTextDefinition#increment',
|
|
51
|
+
'Layout::AutoTextDefinition#increment=',
|
|
52
|
+
'Layout::AutoTextDefinition#number_style',
|
|
53
|
+
'Layout::AutoTextDefinition#number_style=',
|
|
54
|
+
'Layout::AutoTextDefinition#renumber',
|
|
55
|
+
'Layout::AutoTextDefinition#sequence_format',
|
|
56
|
+
'Layout::AutoTextDefinition#sequence_format=',
|
|
57
|
+
'Layout::AutoTextDefinition#start_page',
|
|
58
|
+
'Layout::AutoTextDefinition#start_page=',
|
|
59
|
+
],
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
{
|
|
64
|
+
version: 'SketchUp 2022.0',
|
|
65
|
+
types: {
|
|
66
|
+
class: [
|
|
67
|
+
'Sketchup::EntitiesBuilder',
|
|
68
|
+
],
|
|
69
|
+
method: [
|
|
70
|
+
'Sketchup::AppObserver#onExtensionsLoaded',
|
|
71
|
+
'Sketchup::ComponentDefinition#save_copy',
|
|
72
|
+
'Sketchup::Entities#build',
|
|
73
|
+
'Sketchup::EntitiesBuilder#add_edge',
|
|
74
|
+
'Sketchup::EntitiesBuilder#add_edges',
|
|
75
|
+
'Sketchup::EntitiesBuilder#add_face',
|
|
76
|
+
'Sketchup::EntitiesBuilder#add_line',
|
|
77
|
+
'Sketchup::EntitiesBuilder#entities',
|
|
78
|
+
'Sketchup::EntitiesBuilder#valid?',
|
|
79
|
+
'Sketchup::EntitiesBuilder#vertex_at',
|
|
80
|
+
'Sketchup::Face#clear_texture_position',
|
|
81
|
+
'UI::Command#extension',
|
|
82
|
+
'UI::Command#extension=',
|
|
83
|
+
'UI::Command#get_validation_proc',
|
|
84
|
+
'UI::Command#proc',
|
|
85
|
+
],
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
|
|
44
89
|
{
|
|
45
90
|
version: 'SketchUp 2021.1',
|
|
46
91
|
types: {
|
|
@@ -1231,6 +1276,7 @@ module RuboCop
|
|
|
1231
1276
|
camera_modified?
|
|
1232
1277
|
center_2d
|
|
1233
1278
|
classifications
|
|
1279
|
+
clear_texture_position
|
|
1234
1280
|
clip_to_margins?
|
|
1235
1281
|
clip_to_margins=
|
|
1236
1282
|
colorize_deltas
|
|
@@ -1259,6 +1305,7 @@ module RuboCop
|
|
|
1259
1305
|
get_drawingelement_visibility
|
|
1260
1306
|
get_glued_instances
|
|
1261
1307
|
get_texture_projection
|
|
1308
|
+
get_validation_proc
|
|
1262
1309
|
has_aligned_text?
|
|
1263
1310
|
has_aligned_text=
|
|
1264
1311
|
icon_name
|
|
@@ -1340,6 +1387,7 @@ module RuboCop
|
|
|
1340
1387
|
unload_schema
|
|
1341
1388
|
upper_left
|
|
1342
1389
|
upper_right
|
|
1390
|
+
vertex_at
|
|
1343
1391
|
visible_on_new_pages?
|
|
1344
1392
|
visible_on_new_pages=
|
|
1345
1393
|
winding
|
|
@@ -1352,6 +1400,7 @@ module RuboCop
|
|
|
1352
1400
|
onAfterComponentSaveAs
|
|
1353
1401
|
onBeforeComponentSaveAs
|
|
1354
1402
|
onElementModified
|
|
1403
|
+
onExtensionsLoaded
|
|
1355
1404
|
onExplode
|
|
1356
1405
|
onLayerChanged
|
|
1357
1406
|
onLayerFolderAdded
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-sketchup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.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: 2022-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|