Skip to content

Commit d82e847

Browse files
committed
Merge branch 'main' into staging
2 parents 822781c + 8307b48 commit d82e847

153 files changed

Lines changed: 2985 additions & 1194 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The SketchUp Ruby API allows you to interact with SketchUp models and the Sketch
88
Get started with the <a href="_index.html">Ruby API Overview</a>.
99
</p>
1010

11-
Visit our {https://developer.sketchup.com/ SketchUp Developer Center} for more information and resources on SketchUp's APIs.
11+
Visit our [SketchUp Developer Center](https://developer.sketchup.com) for more information and resources on SketchUp's APIs.
1212

1313
## LayOut API
1414

appveyor.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@ version: "{build}-{branch}"
22

33
branches:
44
only:
5-
- master
5+
- main
66
- dev-appveyor
77

88
cache:
99
- vendor/bundle
1010

1111
environment:
1212
matrix:
13-
- RUBY_VERSION: 25
14-
- RUBY_VERSION: 26
13+
- RUBY_VERSION: 25-x64
14+
- RUBY_VERSION: 26-x64
15+
# Missing Ruby 2.7 with DevKit?
16+
# - RUBY_VERSION: 27-x64
1517

1618
install:
1719
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%

lib/sketchup-api-stubs/sketchup.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
require 'sketchup-api-stubs/stubs/Sketchup/Edge.rb'
8080
require 'sketchup-api-stubs/stubs/Sketchup/EdgeUse.rb'
8181
require 'sketchup-api-stubs/stubs/Sketchup/Entities.rb'
82+
require 'sketchup-api-stubs/stubs/Sketchup/EntitiesBuilder.rb'
8283
require 'sketchup-api-stubs/stubs/Sketchup/EntitiesObserver.rb'
8384
require 'sketchup-api-stubs/stubs/Sketchup/ExtensionsManager.rb'
8485
require 'sketchup-api-stubs/stubs/Sketchup/Face.rb'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright:: Copyright 2020 Trimble Inc.
1+
# Copyright:: Copyright 2022 Trimble Inc.
22
# License:: The MIT License (MIT)
33

44
# The SketchUp Array class adds additional methods to the standard Ruby Array
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright:: Copyright 2020 Trimble Inc.
1+
# Copyright:: Copyright 2022 Trimble Inc.
22
# License:: The MIT License (MIT)
33

44
# The Geom module defines a number of Module methods that let you perform

lib/sketchup-api-stubs/stubs/Geom/BoundingBox.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright:: Copyright 2020 Trimble Inc.
1+
# Copyright:: Copyright 2022 Trimble Inc.
22
# License:: The MIT License (MIT)
33

44
# Bounding boxes are three-dimensional boxes (eight corners), aligned with the

lib/sketchup-api-stubs/stubs/Geom/Bounds2d.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright:: Copyright 2020 Trimble Inc.
1+
# Copyright:: Copyright 2022 Trimble Inc.
22
# License:: The MIT License (MIT)
33

44
# The bounds2d class represents an axis aligned bounding box represented by

lib/sketchup-api-stubs/stubs/Geom/LatLong.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright:: Copyright 2020 Trimble Inc.
1+
# Copyright:: Copyright 2022 Trimble Inc.
22
# License:: The MIT License (MIT)
33

44
# The LatLong class contains various methods for creating and manipulating

lib/sketchup-api-stubs/stubs/Geom/OrientedBounds2d.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright:: Copyright 2020 Trimble Inc.
1+
# Copyright:: Copyright 2022 Trimble Inc.
22
# License:: The MIT License (MIT)
33

44
# The OrientedBounds2d class is a bounding box represented by four

lib/sketchup-api-stubs/stubs/Geom/Point2d.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright:: Copyright 2020 Trimble Inc.
1+
# Copyright:: Copyright 2022 Trimble Inc.
22
# License:: The MIT License (MIT)
33

44
# The {Geom::Point2d} class allows you to work with a point in 2D space.

0 commit comments

Comments
 (0)