sketchup-api-stubs 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +7 -0
  2. data/SketchUp/Geom/BoundingBox.rb +335 -0
  3. data/SketchUp/Geom/LatLong.rb +123 -0
  4. data/SketchUp/Geom/Point3d.rb +643 -0
  5. data/SketchUp/Geom/PolygonMesh.rb +478 -0
  6. data/SketchUp/Geom/Transformation.rb +476 -0
  7. data/SketchUp/Geom/UTM.rb +135 -0
  8. data/SketchUp/Geom/Vector3d.rb +684 -0
  9. data/SketchUp/Sketchup/Animation.rb +137 -0
  10. data/SketchUp/Sketchup/AppObserver.rb +157 -0
  11. data/SketchUp/Sketchup/ArcCurve.rb +209 -0
  12. data/SketchUp/Sketchup/AttributeDictionaries.rb +146 -0
  13. data/SketchUp/Sketchup/AttributeDictionary.rb +280 -0
  14. data/SketchUp/Sketchup/Axes.rb +149 -0
  15. data/SketchUp/Sketchup/Behavior.rb +338 -0
  16. data/SketchUp/Sketchup/Camera.rb +594 -0
  17. data/SketchUp/Sketchup/ClassificationSchema.rb +63 -0
  18. data/SketchUp/Sketchup/Classifications.rb +118 -0
  19. data/SketchUp/Sketchup/Color.rb +291 -0
  20. data/SketchUp/Sketchup/ComponentDefinition.rb +562 -0
  21. data/SketchUp/Sketchup/ComponentInstance.rb +597 -0
  22. data/SketchUp/Sketchup/Console.rb +78 -0
  23. data/SketchUp/Sketchup/ConstructionLine.rb +257 -0
  24. data/SketchUp/Sketchup/ConstructionPoint.rb +32 -0
  25. data/SketchUp/Sketchup/Curve.rb +196 -0
  26. data/SketchUp/Sketchup/DefinitionList.rb +312 -0
  27. data/SketchUp/Sketchup/DefinitionObserver.rb +73 -0
  28. data/SketchUp/Sketchup/DefinitionsObserver.rb +102 -0
  29. data/SketchUp/Sketchup/Dimension.rb +167 -0
  30. data/SketchUp/Sketchup/DimensionLinear.rb +232 -0
  31. data/SketchUp/Sketchup/DimensionObserver.rb +38 -0
  32. data/SketchUp/Sketchup/DimensionRadial.rb +87 -0
  33. data/SketchUp/Sketchup/Drawingelement.rb +400 -0
  34. data/SketchUp/Sketchup/Edge.rb +517 -0
  35. data/SketchUp/Sketchup/EdgeUse.rb +213 -0
  36. data/SketchUp/Sketchup/Entities.rb +1011 -0
  37. data/SketchUp/Sketchup/EntitiesObserver.rb +125 -0
  38. data/SketchUp/Sketchup/Entity.rb +522 -0
  39. data/SketchUp/Sketchup/EntityObserver.rb +59 -0
  40. data/SketchUp/Sketchup/ExtensionsManager.rb +129 -0
  41. data/SketchUp/Sketchup/Face.rb +737 -0
  42. data/SketchUp/Sketchup/FrameChangeObserver.rb +104 -0
  43. data/SketchUp/Sketchup/Group.rb +705 -0
  44. data/SketchUp/Sketchup/Http.rb +27 -0
  45. data/SketchUp/Sketchup/Http/Request.rb +285 -0
  46. data/SketchUp/Sketchup/Http/Response.rb +62 -0
  47. data/SketchUp/Sketchup/Image.rb +393 -0
  48. data/SketchUp/Sketchup/Importer.rb +192 -0
  49. data/SketchUp/Sketchup/InputPoint.rb +393 -0
  50. data/SketchUp/Sketchup/InstanceObserver.rb +82 -0
  51. data/SketchUp/Sketchup/InstancePath.rb +297 -0
  52. data/SketchUp/Sketchup/Layer.rb +240 -0
  53. data/SketchUp/Sketchup/Layers.rb +235 -0
  54. data/SketchUp/Sketchup/LayersObserver.rb +136 -0
  55. data/SketchUp/Sketchup/Licensing.rb +47 -0
  56. data/SketchUp/Sketchup/Licensing/ExtensionLicense.rb +88 -0
  57. data/SketchUp/Sketchup/Loop.rb +141 -0
  58. data/SketchUp/Sketchup/Material.rb +384 -0
  59. data/SketchUp/Sketchup/Materials.rb +283 -0
  60. data/SketchUp/Sketchup/MaterialsObserver.rb +141 -0
  61. data/SketchUp/Sketchup/Menu.rb +97 -0
  62. data/SketchUp/Sketchup/Model.rb +1459 -0
  63. data/SketchUp/Sketchup/ModelObserver.rb +356 -0
  64. data/SketchUp/Sketchup/OptionsManager.rb +135 -0
  65. data/SketchUp/Sketchup/OptionsProvider.rb +277 -0
  66. data/SketchUp/Sketchup/OptionsProviderObserver.rb +58 -0
  67. data/SketchUp/Sketchup/Page.rb +636 -0
  68. data/SketchUp/Sketchup/Pages.rb +349 -0
  69. data/SketchUp/Sketchup/PagesObserver.rb +76 -0
  70. data/SketchUp/Sketchup/PickHelper.rb +457 -0
  71. data/SketchUp/Sketchup/RegionalSettings.rb +43 -0
  72. data/SketchUp/Sketchup/RenderingOptions.rb +337 -0
  73. data/SketchUp/Sketchup/RenderingOptionsObserver.rb +44 -0
  74. data/SketchUp/Sketchup/SectionPlane.rb +88 -0
  75. data/SketchUp/Sketchup/Selection.rb +470 -0
  76. data/SketchUp/Sketchup/SelectionObserver.rb +115 -0
  77. data/SketchUp/Sketchup/Set.rb +253 -0
  78. data/SketchUp/Sketchup/ShadowInfo.rb +257 -0
  79. data/SketchUp/Sketchup/ShadowInfoObserver.rb +57 -0
  80. data/SketchUp/Sketchup/Style.rb +77 -0
  81. data/SketchUp/Sketchup/Styles.rb +204 -0
  82. data/SketchUp/Sketchup/Text.rb +241 -0
  83. data/SketchUp/Sketchup/Texture.rb +211 -0
  84. data/SketchUp/Sketchup/TextureWriter.rb +237 -0
  85. data/SketchUp/Sketchup/Tool.rb +808 -0
  86. data/SketchUp/Sketchup/Tools.rb +120 -0
  87. data/SketchUp/Sketchup/ToolsObserver.rb +154 -0
  88. data/SketchUp/Sketchup/UVHelper.rb +61 -0
  89. data/SketchUp/Sketchup/Vertex.rb +143 -0
  90. data/SketchUp/Sketchup/View.rb +965 -0
  91. data/SketchUp/Sketchup/ViewObserver.rb +40 -0
  92. data/SketchUp/UI/Command.rb +307 -0
  93. data/SketchUp/UI/HtmlDialog.rb +346 -0
  94. data/SketchUp/UI/Notification.rb +229 -0
  95. data/SketchUp/UI/Toolbar.rb +243 -0
  96. data/SketchUp/UI/WebDialog.rb +623 -0
  97. data/SketchUp/_top_level.rb +193 -0
  98. data/SketchUp/array.rb +593 -0
  99. data/SketchUp/geom.rb +231 -0
  100. data/SketchUp/languagehandler.rb +92 -0
  101. data/SketchUp/length.rb +210 -0
  102. data/SketchUp/numeric.rb +249 -0
  103. data/SketchUp/sketchup.rb +1290 -0
  104. data/SketchUp/sketchupextension.rb +355 -0
  105. data/SketchUp/string.rb +24 -0
  106. data/SketchUp/ui.rb +637 -0
  107. metadata +176 -0
metadata ADDED
@@ -0,0 +1,176 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sketchup-api-stubs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Trimble Inc, SketchUp Team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-02-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Stubs for the SketchUp Ruby API intended to assist IDEs.
42
+ email:
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - SketchUp/Geom/BoundingBox.rb
48
+ - SketchUp/Geom/LatLong.rb
49
+ - SketchUp/Geom/Point3d.rb
50
+ - SketchUp/Geom/PolygonMesh.rb
51
+ - SketchUp/Geom/Transformation.rb
52
+ - SketchUp/Geom/UTM.rb
53
+ - SketchUp/Geom/Vector3d.rb
54
+ - SketchUp/Sketchup/Animation.rb
55
+ - SketchUp/Sketchup/AppObserver.rb
56
+ - SketchUp/Sketchup/ArcCurve.rb
57
+ - SketchUp/Sketchup/AttributeDictionaries.rb
58
+ - SketchUp/Sketchup/AttributeDictionary.rb
59
+ - SketchUp/Sketchup/Axes.rb
60
+ - SketchUp/Sketchup/Behavior.rb
61
+ - SketchUp/Sketchup/Camera.rb
62
+ - SketchUp/Sketchup/ClassificationSchema.rb
63
+ - SketchUp/Sketchup/Classifications.rb
64
+ - SketchUp/Sketchup/Color.rb
65
+ - SketchUp/Sketchup/ComponentDefinition.rb
66
+ - SketchUp/Sketchup/ComponentInstance.rb
67
+ - SketchUp/Sketchup/Console.rb
68
+ - SketchUp/Sketchup/ConstructionLine.rb
69
+ - SketchUp/Sketchup/ConstructionPoint.rb
70
+ - SketchUp/Sketchup/Curve.rb
71
+ - SketchUp/Sketchup/DefinitionList.rb
72
+ - SketchUp/Sketchup/DefinitionObserver.rb
73
+ - SketchUp/Sketchup/DefinitionsObserver.rb
74
+ - SketchUp/Sketchup/Dimension.rb
75
+ - SketchUp/Sketchup/DimensionLinear.rb
76
+ - SketchUp/Sketchup/DimensionObserver.rb
77
+ - SketchUp/Sketchup/DimensionRadial.rb
78
+ - SketchUp/Sketchup/Drawingelement.rb
79
+ - SketchUp/Sketchup/Edge.rb
80
+ - SketchUp/Sketchup/EdgeUse.rb
81
+ - SketchUp/Sketchup/Entities.rb
82
+ - SketchUp/Sketchup/EntitiesObserver.rb
83
+ - SketchUp/Sketchup/Entity.rb
84
+ - SketchUp/Sketchup/EntityObserver.rb
85
+ - SketchUp/Sketchup/ExtensionsManager.rb
86
+ - SketchUp/Sketchup/Face.rb
87
+ - SketchUp/Sketchup/FrameChangeObserver.rb
88
+ - SketchUp/Sketchup/Group.rb
89
+ - SketchUp/Sketchup/Http.rb
90
+ - SketchUp/Sketchup/Http/Request.rb
91
+ - SketchUp/Sketchup/Http/Response.rb
92
+ - SketchUp/Sketchup/Image.rb
93
+ - SketchUp/Sketchup/Importer.rb
94
+ - SketchUp/Sketchup/InputPoint.rb
95
+ - SketchUp/Sketchup/InstanceObserver.rb
96
+ - SketchUp/Sketchup/InstancePath.rb
97
+ - SketchUp/Sketchup/Layer.rb
98
+ - SketchUp/Sketchup/Layers.rb
99
+ - SketchUp/Sketchup/LayersObserver.rb
100
+ - SketchUp/Sketchup/Licensing.rb
101
+ - SketchUp/Sketchup/Licensing/ExtensionLicense.rb
102
+ - SketchUp/Sketchup/Loop.rb
103
+ - SketchUp/Sketchup/Material.rb
104
+ - SketchUp/Sketchup/Materials.rb
105
+ - SketchUp/Sketchup/MaterialsObserver.rb
106
+ - SketchUp/Sketchup/Menu.rb
107
+ - SketchUp/Sketchup/Model.rb
108
+ - SketchUp/Sketchup/ModelObserver.rb
109
+ - SketchUp/Sketchup/OptionsManager.rb
110
+ - SketchUp/Sketchup/OptionsProvider.rb
111
+ - SketchUp/Sketchup/OptionsProviderObserver.rb
112
+ - SketchUp/Sketchup/Page.rb
113
+ - SketchUp/Sketchup/Pages.rb
114
+ - SketchUp/Sketchup/PagesObserver.rb
115
+ - SketchUp/Sketchup/PickHelper.rb
116
+ - SketchUp/Sketchup/RegionalSettings.rb
117
+ - SketchUp/Sketchup/RenderingOptions.rb
118
+ - SketchUp/Sketchup/RenderingOptionsObserver.rb
119
+ - SketchUp/Sketchup/SectionPlane.rb
120
+ - SketchUp/Sketchup/Selection.rb
121
+ - SketchUp/Sketchup/SelectionObserver.rb
122
+ - SketchUp/Sketchup/Set.rb
123
+ - SketchUp/Sketchup/ShadowInfo.rb
124
+ - SketchUp/Sketchup/ShadowInfoObserver.rb
125
+ - SketchUp/Sketchup/Style.rb
126
+ - SketchUp/Sketchup/Styles.rb
127
+ - SketchUp/Sketchup/Text.rb
128
+ - SketchUp/Sketchup/Texture.rb
129
+ - SketchUp/Sketchup/TextureWriter.rb
130
+ - SketchUp/Sketchup/Tool.rb
131
+ - SketchUp/Sketchup/Tools.rb
132
+ - SketchUp/Sketchup/ToolsObserver.rb
133
+ - SketchUp/Sketchup/UVHelper.rb
134
+ - SketchUp/Sketchup/Vertex.rb
135
+ - SketchUp/Sketchup/View.rb
136
+ - SketchUp/Sketchup/ViewObserver.rb
137
+ - SketchUp/UI/Command.rb
138
+ - SketchUp/UI/HtmlDialog.rb
139
+ - SketchUp/UI/Notification.rb
140
+ - SketchUp/UI/Toolbar.rb
141
+ - SketchUp/UI/WebDialog.rb
142
+ - SketchUp/_top_level.rb
143
+ - SketchUp/array.rb
144
+ - SketchUp/geom.rb
145
+ - SketchUp/languagehandler.rb
146
+ - SketchUp/length.rb
147
+ - SketchUp/numeric.rb
148
+ - SketchUp/sketchup.rb
149
+ - SketchUp/sketchupextension.rb
150
+ - SketchUp/string.rb
151
+ - SketchUp/ui.rb
152
+ homepage: https://github.com/SketchUp/ruby-api-stubs
153
+ licenses:
154
+ - MIT
155
+ metadata: {}
156
+ post_install_message:
157
+ rdoc_options: []
158
+ require_paths:
159
+ - Sketchup
160
+ required_ruby_version: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: '2.0'
165
+ required_rubygems_version: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - ">="
168
+ - !ruby/object:Gem::Version
169
+ version: '0'
170
+ requirements: []
171
+ rubyforge_project:
172
+ rubygems_version: 2.6.10
173
+ signing_key:
174
+ specification_version: 4
175
+ summary: SketchUp Ruby API stubs.
176
+ test_files: []