forked from SmallLars/coap
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcoap.gemspec
43 lines (36 loc) · 1.78 KB
/
coap.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
33
34
35
36
37
38
39
40
41
42
43
$:.unshift File.expand_path('lib', File.dirname(__FILE__))
require 'core/coap/version'
Gem::Specification.new do |s|
s.name = 'coap'
s.version = CoRE::CoAP::VERSION
s.summary = 'Pure Ruby implementation of RFC 7252 (Constrained Application Protocol (CoAP))'
s.description = 'Pure Ruby implementation of RFC 7252 (Constrained Application
Protocol (CoAP)). The Constrained Application Protocol (CoAP) is a
specialized web transfer protocol for use with constrained nodes and
constrained (e.g., low-power, lossy) networks. The nodes often have 8-bit
microcontrollers with small amounts of ROM and RAM, while constrained
networks such as IPv6 over Low-Power Wireless Personal Area Networks
(6LoWPANs) often have high packet error rates and a typical throughput of
10s of kbit/s. The protocol is designed for machine-to-machine (M2M)
applications such as smart energy and building automation.'
s.homepage = 'https://github.com/nning/coap'
s.license = 'MIT'
s.authors = ['Carsten Bormann', 'Simon Frerichs', 'henning mueller']
s.email = '[email protected]'
begin
s.files = `git ls-files`.split($/)
rescue
s.files = Dir.glob('**/*').select { |x| x !~ /.*\.gem$/ }
end
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.add_development_dependency 'bundler', ['>= 1.6', '< 3.0']
s.add_development_dependency 'coveralls', '~> 0.7'
s.add_development_dependency 'faker', '~> 1.4'
s.add_development_dependency 'minitest', '~> 5.4'
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_dependency 'celluloid-io', '~> 0.17.3'
s.add_dependency 'resolv-ipv6favor', '~> 0'
end