-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscriptup.gemspec
26 lines (24 loc) · 1.13 KB
/
scriptup.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Gem::Specification.new do |spec|
spec.name = 'scriptup'
spec.version = ENV['SCRIPTUP_VERSION'] || '0.0.0'
spec.authors = ['Noel Warren']
spec.email = ['[email protected]']
spec.summary = 'Ruby bindings for the SketchUp C API'
spec.description = 'This project provides ruby bindings around the SketchUp C API. They are designed to mimmic the SketchUp ruby api for use in Sketchup extension tests outside the SketchUp application. You can however use them for general purpouse scripting.'
spec.homepage = 'https://git.chaosgroup.com/sketchup/sketchup-ruby-bindings'
spec.license = 'BSD-3-Clause'
spec.files = Dir[
'README.md',
'LICENSE.txt',
'lib/sketchup.rb',
'ext/*',
'sketchup-sdk-win/binaries/**/*',
'sketchup-sdk-win/headers/**/*',
'sketchup-sdk-mac/SketchUpAPI.framework/**/*'
].reject { |f| File.symlink?(f) }
spec.require_paths = ['lib']
spec.extensions = ['ext/extconf.rb']
spec.required_ruby_version = '>= 2.5'
spec.add_development_dependency 'bundler', '~> 2.4.10'
spec.add_development_dependency 'rake', '~> 13.0'
end