-
Notifications
You must be signed in to change notification settings - Fork 0
/
dxf.gemspec
23 lines (19 loc) · 841 Bytes
/
dxf.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "dxf"
gem.version = '1.0.0'
gem.authors = ["Brandon Fosdick && Emre Basala"]
gem.email = [""]
gem.description = %q{Read and write DXF files using Ruby}
gem.summary = %q{Tools for working with the popular DXF file format}
gem.homepage = "http://github.com/bfoz/ruby-dxf"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'geometry', '~> 6.4'
gem.add_dependency 'sketch', '~> 0.4'
gem.required_ruby_version = '>= 2.0'
end