-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
imessage.gemspec
23 lines (19 loc) · 902 Bytes
/
imessage.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'imessage/version'
Gem::Specification.new do |spec|
spec.name = 'imessage'
spec.version = Imessage::VERSION
spec.authors = ['Jun Lin']
spec.email = ['linjunpop@gmail.com']
spec.summary = 'Send text and attachment in Message.app on macOS.'
spec.description = 'A command line tool to send text and attachment in Message.app.'
spec.homepage = 'https://github.com/linjunpop/imessage'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.rb'] + Dir['lib/**/*.applescript'] + Dir['exe/*']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.3'
end