rubocop-sketchup 1.1.0 → 1.2.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: 041adce4e41a312a5ada4a3e150b27d32dc4e286d16f1a244fdd95576fa64e37
4
- data.tar.gz: 6a5b40bdcad8358c5c110c43930284ede6682a5fd9171711652f4093c4eabc85
3
+ metadata.gz: d69761990813abecd3a20633643a490c07df1a341c0ba6f36131d6aedf682fe3
4
+ data.tar.gz: 40ccb6f930c97bb0a716ac72d36c4963849dd40f9cd4e69f3bc3d26b86e3c6d7
5
5
  SHA512:
6
- metadata.gz: cc3fbdebd82516aa4235afc75acd06670ae6dfb18f60281a3a1740b43b021f4813ef458fa2584b3aae41e6d59cd0060380938d911fb56a9dd0dcbca2722374e7
7
- data.tar.gz: d385ee385023c561695ddc46b8b7ec86a5a0a279a0e9649b44cdeaf962387574e19e8ad9eec77ba79c534c48f8f5d4cbc9288da3824d0a3f718f1c55d173c2f4
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
@@ -67,6 +67,7 @@ module RuboCop
67
67
  #
68
68
  # The second item in the array is maintenance annotation
69
69
  VALID_VERSIONS = [
70
+ [2022.0, 0],
70
71
  [2021.1, 0],
71
72
  [2021.0, 0],
72
73
  [2020.1, 0],
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module SketchUp
5
- VERSION = '1.1.0'
5
+ VERSION = '1.2.0'
6
6
  end
7
7
  end
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.1.0
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: 2021-10-19 00:00:00.000000000 Z
11
+ date: 2022-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop