-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodbus.gemspec
More file actions
26 lines (21 loc) · 859 Bytes
/
modbus.gemspec
File metadata and controls
26 lines (21 loc) · 859 Bytes
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
# frozen_string_literal: true, encoding: ASCII-8BIT
Gem::Specification.new do |s|
s.name = "modbus"
s.version = '1.0.1'
s.authors = ["Stephen von Takach"]
s.email = ["steve@aca.im"]
s.licenses = ["MIT"]
s.homepage = "https://github.com/acaprojects/ruby-modbus"
s.summary = "Modbus protocol on Ruby"
s.description = <<-EOF
Constructs Modbus standard datagrams that make it easy to communicate with devices on Modbus networks
EOF
s.add_dependency 'bindata', '~> 2.3'
s.add_dependency 'crc', '~> 0.4'
s.add_development_dependency 'rspec', '~> 3.5'
s.add_development_dependency 'rake', '~> 12'
s.files = Dir["{lib}/**/*"] + %w(modbus.gemspec README.md)
s.test_files = Dir["spec/**/*"]
s.extra_rdoc_files = ["README.md"]
s.require_paths = ["lib"]
end