-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtp.rb.gemspec
26 lines (21 loc) · 1.03 KB
/
tp.rb.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
# encoding: utf-8
require_relative 'lib/tp/version'
Gem::Specification.new do |spec|
spec.add_development_dependency 'test-unit', '~> 3.0'
spec.add_development_dependency 'rake', '~> 10.4'
spec.add_development_dependency 'racc', '~> 1.4'
spec.authors = ["Jay Strybis"]
spec.email = ['[email protected]']
spec.name = 'tp.rb'
spec.description = 'FANUC TP parser'
spec.summary = 'Parse FANUC TP files with Ruby.'
spec.homepage = 'http://github.com/onerobotics/tp.rb/'
spec.licenses = ['MIT']
spec.version = TP::VERSION
spec.files = %w(README.md Rakefile tp.rb.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("test/**/*")
spec.test_files = Dir.glob("test/**/*")
spec.require_paths = ['lib']
spec.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
end