-
Notifications
You must be signed in to change notification settings - Fork 4
/
triangular.gemspec
27 lines (22 loc) · 1.29 KB
/
triangular.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
27
# frozen_string_literal: true
require File.expand_path('lib/triangular/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'triangular'
spec.version = Triangular::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Aaron Gough']
spec.email = ['[email protected]']
spec.license = "MIT"
spec.homepage = 'http://rubygems.org/gems/triangular'
spec.summary = 'A simple Ruby library for reading, writing, and manipulating Stereolithography (STL) files.'
spec.description = "Triangular is an easy-to-use Ruby library for reading, writing and manipulating Stereolithography (STL) files.\n\n The main purpose of Triangular is to enable its users to quickly create new software for Rapid Prototyping and Personal Manufacturing applications. "
spec.add_development_dependency 'bundler', '~> 1.0'
spec.add_development_dependency 'rspec', '~> 3'
spec.add_development_dependency 'rubocop', '~> 1.12'
spec.add_development_dependency 'ruby-prof', '~> 1.4'
spec.add_development_dependency 'simplecov', '0.17.1'
spec.required_ruby_version = '>= 1.9.0'
spec.files = `git ls-files`.split("\n")
spec.executables = `git ls-files`.split("\n").map { |f| f =~ %r{^bin/(.*)} ? Regexp.last_match(1) : nil }.compact
spec.require_path = 'lib'
end