forked from mlankenau/vacman_controller
-
Notifications
You must be signed in to change notification settings - Fork 3
/
vacman_controller.gemspec
23 lines (20 loc) · 1.01 KB
/
vacman_controller.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/vacman_controller/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'vacman_controller'
s.version = VacmanController::VERSION
s.date = '2019-04-04'
s.summary = "Ruby layer to access VASCO Vacman Controller functions"
s.description = "Expose the AAL2 SDK API via a set of Ruby classes optimised for developer happiness"
s.authors = ["Marcus Lankenau", "Marcello Barnaba"]
s.email = ["[email protected]", "[email protected]"]
s.files = Dir.glob('lib/**/*.rb') + Dir.glob('ext/**/*.{c,h,rb}')
s.homepage = 'https://github.com/ifad/vacman_controller'
s.extensions = ['ext/vacman_controller/extconf.rb']
s.add_development_dependency 'rake-compiler'
s.add_development_dependency 'rspec'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'byebug'
s.add_development_dependency 'code_counter'
s.metadata['rubygems_mfa_required'] = 'true'
end