-
Notifications
You must be signed in to change notification settings - Fork 22
/
te3270.gemspec
31 lines (26 loc) · 1.34 KB
/
te3270.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
28
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'te3270/version'
Gem::Specification.new do |spec|
spec.name = "te3270"
spec.version = TE3270::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Jeffrey S. Morgan", "Nithin C. Reddy", "Glenn W. Waters", "Thrivikrama Madiraju", "David West", "Jonathan Flatt"]
spec.email = ["[email protected]","[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"]
spec.description = %q{Automates a 3270 Terminal Emulator}
spec.summary = %q{Automates a 3270 Terminal Emulator}
spec.homepage = "http://github.com/cheezy/te3270"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.extensions = ["ext/mkrf_conf.rb"]
spec.add_dependency 'page_navigation', '>= 0.9'
spec.add_dependency 'watir', '~> 6.0'
spec.add_dependency 'win32screenshot' if Gem.win_platform?
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end