rubocop-sketchup 0.18.0 → 0.19.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 +24 -0
- data/lib/rubocop/sketchup/sketchup_version.rb +1 -0
- data/lib/rubocop/sketchup/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ece47daae3428b0918e22ceb77535ad907220f4ea8d6b8a0df1f1f375fcc389
|
|
4
|
+
data.tar.gz: efde5166fd6546561d536e7681869ef40684aed0e2d69104d4fab6372fa2ff01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7118c5bf98cfdabeae09fce334e2fc92bac56394b8acd09c5398dc9726cc647d5b828a722d4525b0889d35ec7da5536c1bdfc04e75d3da4e33dac876c0cabdd
|
|
7
|
+
data.tar.gz: 2dc355ae4f59fa71275a56f5dba47cfce54e736f157fc51ac736c936c74d7bd1a4cf5e1e66f76ac92f6e67cc054d6f7fb407575490738adefec12374e54514a7
|
|
@@ -41,6 +41,28 @@ module RuboCop
|
|
|
41
41
|
|
|
42
42
|
FEATURES = [
|
|
43
43
|
|
|
44
|
+
{
|
|
45
|
+
version: 'SketchUp 2021.1',
|
|
46
|
+
types: {
|
|
47
|
+
method: [
|
|
48
|
+
'Sketchup.focus',
|
|
49
|
+
'Sketchup::DefinitionList#import',
|
|
50
|
+
'Sketchup::Face#clear_texture_projection',
|
|
51
|
+
'Sketchup::Face#texture_positioned?',
|
|
52
|
+
'Sketchup::Face#texture_projected?',
|
|
53
|
+
'Sketchup::Face#uv_tile_at',
|
|
54
|
+
'Sketchup::Group#glued_to',
|
|
55
|
+
'Sketchup::Group#glued_to=',
|
|
56
|
+
'Sketchup::Image#glued_to',
|
|
57
|
+
'Sketchup::Image#glued_to=',
|
|
58
|
+
'UI::HtmlDialog#get_content_size',
|
|
59
|
+
'UI::HtmlDialog#get_position',
|
|
60
|
+
'UI::HtmlDialog#get_size',
|
|
61
|
+
'UI::HtmlDialog#set_content_size',
|
|
62
|
+
],
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
|
|
44
66
|
{
|
|
45
67
|
version: 'SketchUp 2021.0',
|
|
46
68
|
types: {
|
|
@@ -52,6 +74,7 @@ module RuboCop
|
|
|
52
74
|
'Sketchup::ComponentDefinition#live_component?',
|
|
53
75
|
'Sketchup::Layer#folder',
|
|
54
76
|
'Sketchup::Layer#folder=',
|
|
77
|
+
'Sketchup::LayerFolder#<=>',
|
|
55
78
|
'Sketchup::LayerFolder#==',
|
|
56
79
|
'Sketchup::LayerFolder#add_folder',
|
|
57
80
|
'Sketchup::LayerFolder#add_layer',
|
|
@@ -149,6 +172,7 @@ module RuboCop
|
|
|
149
172
|
'Sketchup::Model#drawing_element_visible?',
|
|
150
173
|
'Sketchup::Page#get_drawingelement_visibility',
|
|
151
174
|
'Sketchup::Page#set_drawingelement_visibility',
|
|
175
|
+
'Sketchup::View#load_texture',
|
|
152
176
|
'Sketchup::View#text_bounds',
|
|
153
177
|
],
|
|
154
178
|
},
|
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: 0.
|
|
4
|
+
version: 0.19.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: 2021-06-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -144,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
144
144
|
- !ruby/object:Gem::Version
|
|
145
145
|
version: '0'
|
|
146
146
|
requirements: []
|
|
147
|
-
rubygems_version: 3.
|
|
147
|
+
rubygems_version: 3.2.15
|
|
148
148
|
signing_key:
|
|
149
149
|
specification_version: 4
|
|
150
150
|
summary: RuboCop rules for SketchUp extensions.
|