Skip to content

Commit 1924dde

Browse files
committed
Merge branch 'master' into staging
2 parents b9ea238 + fd28c3b commit 1924dde

3 files changed

Lines changed: 42 additions & 0 deletions

File tree

.github/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# SketchUp Ruby API Stubs
22

3+
[![Gem Version](https://badge.fury.io/rb/sketchup-api-stubs.svg)](https://badge.fury.io/rb/sketchup-api-stubs) [![Build status](https://ci.appveyor.com/api/projects/status/6l5tqoawh44lut66?svg=true)](https://ci.appveyor.com/project/thomthom/rubocop-sketchup)
4+
35
Auto-generated stubs for the SketchUp Ruby API. Useful for IDE intellisense and auto-complete.
46

57
This is currently a work in progress and it may change a lot in the near future.

Rakefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
require 'bundler/gem_tasks'
2+
require 'yard'
3+
4+
YARD::Rake::YardocTask.new do |t|
5+
t.options << '--fail-on-warning'
6+
end
7+
8+
task default: %i[
9+
yard
10+
]

appveyor.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: "{build}-{branch}"
2+
3+
branches:
4+
only:
5+
- master
6+
- dev-appveyor
7+
8+
cache:
9+
- vendor/bundle
10+
11+
environment:
12+
matrix:
13+
- RUBY_VERSION: 25
14+
- RUBY_VERSION: 26
15+
16+
install:
17+
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
18+
- gem update --no-document --system 2.7.8
19+
- gem install bundler --no-document --version="<2.0.0"
20+
- bundle config --local path vendor/bundle
21+
- bundle install
22+
23+
build: off
24+
25+
before_test:
26+
- ruby -v
27+
- gem -v
28+
- bundle -v
29+
30+
test_script:
31+
- bundle exec rake

0 commit comments

Comments
 (0)