coap 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/coap.gemspec +12 -4
- data/lib/coap/version.rb +1 -1
- metadata +27 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6053dce9e4fe83df986d57b19de5aec3a77c165
|
|
4
|
+
data.tar.gz: 3c7cefeb14386c899991dcee9ec85a90de18df8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5186b30d85176df6a758340ff649866f5c56902ddd697cd50ef910a640633b9f82fadbbfc489cf83400b5344bd73d73365c4f9e3a4a6a48d91e3cea66818dc4f
|
|
7
|
+
data.tar.gz: ce883c182fa8735ba6cf24249cdae83b88eca9c76c8720b355844e6a9264a27e42cda581bed9f75bd389bf113898921ac4d896b7a665377e51de1ed86a2e2f65
|
data/coap.gemspec
CHANGED
|
@@ -8,10 +8,18 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Coap::VERSION
|
|
9
9
|
spec.authors = ["Carsten Bormann","Simon Frerichs"]
|
|
10
10
|
spec.email = ["morpheus@morphhome.net"]
|
|
11
|
-
spec.summary = %q{
|
|
12
|
-
spec.description = %q{
|
|
11
|
+
spec.summary = %q{Ruby Gem for RFC 7252 - Constrained Application Protocol (CoAP)}
|
|
12
|
+
spec.description = %q{Ruby Gem for RFC 7252 - Constrained Application Protocol (CoAP)
|
|
13
|
+
The Constrained Application Protocol (CoAP) is a specialized web
|
|
14
|
+
transfer protocol for use with constrained nodes and constrained
|
|
15
|
+
(e.g., low-power, lossy) networks. The nodes often have 8-bit
|
|
16
|
+
microcontrollers with small amounts of ROM and RAM, while constrained
|
|
17
|
+
networks such as 6LoWPAN often have high packet error rates and a
|
|
18
|
+
typical throughput of 10s of kbit/s. The protocol is designed for
|
|
19
|
+
machine-to-machine (M2M) applications such as smart energy and
|
|
20
|
+
building automation}
|
|
13
21
|
spec.homepage = ""
|
|
14
|
-
spec.license = "
|
|
22
|
+
spec.license = "MIT"
|
|
15
23
|
|
|
16
24
|
spec.files = `git ls-files`.split($/)
|
|
17
25
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
@@ -21,5 +29,5 @@ Gem::Specification.new do |spec|
|
|
|
21
29
|
spec.add_development_dependency "bundler", "~> 1.5"
|
|
22
30
|
spec.add_development_dependency "rake"
|
|
23
31
|
spec.add_dependency "resolv-ipv6favor"
|
|
24
|
-
|
|
32
|
+
spec.add_dependency "codtls"
|
|
25
33
|
end
|
data/lib/coap/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Carsten Bormann
|
|
@@ -53,7 +53,30 @@ dependencies:
|
|
|
53
53
|
- - ">="
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '0'
|
|
56
|
-
|
|
56
|
+
- !ruby/object:Gem::Dependency
|
|
57
|
+
name: codtls
|
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '0'
|
|
63
|
+
type: :runtime
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
70
|
+
description: |-
|
|
71
|
+
Ruby Gem for RFC 7252 - Constrained Application Protocol (CoAP)
|
|
72
|
+
The Constrained Application Protocol (CoAP) is a specialized web
|
|
73
|
+
transfer protocol for use with constrained nodes and constrained
|
|
74
|
+
(e.g., low-power, lossy) networks. The nodes often have 8-bit
|
|
75
|
+
microcontrollers with small amounts of ROM and RAM, while constrained
|
|
76
|
+
networks such as 6LoWPAN often have high packet error rates and a
|
|
77
|
+
typical throughput of 10s of kbit/s. The protocol is designed for
|
|
78
|
+
machine-to-machine (M2M) applications such as smart energy and
|
|
79
|
+
building automation
|
|
57
80
|
email:
|
|
58
81
|
- morpheus@morphhome.net
|
|
59
82
|
executables:
|
|
@@ -84,7 +107,7 @@ files:
|
|
|
84
107
|
- test/test_message.rb
|
|
85
108
|
homepage: ''
|
|
86
109
|
licenses:
|
|
87
|
-
-
|
|
110
|
+
- MIT
|
|
88
111
|
metadata: {}
|
|
89
112
|
post_install_message:
|
|
90
113
|
rdoc_options: []
|
|
@@ -105,7 +128,7 @@ rubyforge_project:
|
|
|
105
128
|
rubygems_version: 2.2.2
|
|
106
129
|
signing_key:
|
|
107
130
|
specification_version: 4
|
|
108
|
-
summary:
|
|
131
|
+
summary: Ruby Gem for RFC 7252 - Constrained Application Protocol (CoAP)
|
|
109
132
|
test_files:
|
|
110
133
|
- test/coap_test_helper.rb
|
|
111
134
|
- test/disabled_econotag_blck.rb
|