-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmouse.gemspec
34 lines (28 loc) · 1.01 KB
/
mouse.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
31
32
33
34
require './lib/mouse/version'
Gem::Specification.new do |s|
s.name = 'mouse'
s.version = Mouse::VERSION
s.summary = 'A library for automating the mouse'
s.description = <<-EOS
mouse is a rich, high level wrapper around OS X CGEvent APIs that allow
programmatic manipulation of the mouse cursor.
Originally extracted from the AXElements project.
EOS
s.authors = ['Mark Rada']
s.email = '[email protected]'
s.homepage = 'http://github.com/AXElements/mouse'
s.licenses = ['BSD 3-clause']
s.has_rdoc = 'yard'
s.platform = Gem::Platform::RUBY # local
s.extensions = ['ext/mouse/extconf.rb']
s.files = Dir.glob('lib/**/*.rb') +
Dir.glob('ext/**/*.{c,h,rb}') +
[
'Rakefile',
'README.markdown',
'History.markdown',
'.yardopts'
]
s.test_files = Dir.glob('test/**/test_*.rb') + [ 'test/helper.rb' ]
s.required_ruby_version = '>= 2.0.0'
end