-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmtik.gemspec
33 lines (32 loc) · 1.07 KB
/
mtik.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
Gem::Specification.new do |spec|
spec.name = 'mtik'
spec.version = File.open('VERSION.txt','r').to_a.join.strip
spec.date = File.mtime('VERSION.txt')
spec.author = 'Aaron D. Gifford'
spec.homepage = 'https://aarongifford.com/computers/mtik/'
spec.summary = 'MTik implements the MikroTik RouterOS API for use in Ruby.'
spec.description = 'MTik implements the MikroTik RouterOS API for use in Ruby.'
spec.rubyforge_project = 'mtik'
spec.extra_rdoc_files = [ 'README.txt' ]
spec.require_paths = [ 'lib' ]
spec.files = [
'CHANGELOG.txt',
'LICENSE.txt',
'README.txt',
'VERSION.txt',
'Rakefile',
'bin/tikcli',
'bin/tikcommand',
'bin/tikfetch',
'bin/tikjson',
'lib/mtik.rb',
'lib/mtik/connection.rb',
'lib/mtik/error.rb',
'lib/mtik/fatalerror.rb',
'lib/mtik/reply.rb',
'lib/mtik/request.rb',
'lib/mtik/timeouterror.rb'
]
spec.executables = [ 'tikcli', 'tikcommand', 'tikfetch', 'tikjson' ]
end