forked from etm/opcua-smart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opcua.gemspec
26 lines (20 loc) · 1.04 KB
/
opcua.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
Gem::Specification.new do |s|
s.name = "opcua"
s.version = "0.16"
s.platform = Gem::Platform::RUBY
s.license = "LGPL-3.0"
s.summary = "Preliminary release of opcua (open62541) ruby bindings. C performance, Ruby elegance, simplicity, and productivity."
s.description = "see https://github.com/etm/opcua-smart"
s.files = Dir['{example/**/*,tools/**/*,lib/**/*.rb,ext/**/*.c,ext/**/*.h,cert/*.h,contrib/logo*}'] + %w(COPYING Rakefile opcua.gemspec README.md)
s.extensions = Dir["ext/**/extconf.rb"]
s.require_path = 'lib'
s.extra_rdoc_files = ['README.md']
s.bindir = 'tools'
s.required_ruby_version = '>=2.5.0'
s.authors = ['Juergen eTM Mangler','Florian Pauker']
s.email = '[email protected]'
s.homepage = 'https://github.com/etm/opcua-smart'
s.add_runtime_dependency 'daemonite', '~> 0', '>= 0.5.4'
s.add_development_dependency 'rake', '~> 12'
s.add_development_dependency 'rake-compiler', '~> 1.0'
end