elaios 0.1.2 → 0.1.3
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/README.md +25 -1
- data/elaios.gemspec +1 -1
- data/lib/elaios/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d790db6205de1eac878248f3fb57067a35a4e35a
|
4
|
+
data.tar.gz: ee087c968d7358c51431b1a5cdae4335ec2ae3a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21d221221c8d646a2e6da5190f33cc8dfaa5d95be6917be5b641a48ca538932af92709574a3e49f7ba89d744c58b4ca1380be7e80f6608f842afb87b66df4e57
|
7
|
+
data.tar.gz: 1daaf04c865cbd02d49d6214f40eb9cae929f558d6f87e0aa2094b10e388701bd9da06b38576fc09b8200c350329595f5fc42f888d0cdd638affe005c16169a7
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Elaios
|
2
2
|
|
3
|
-
Elaios is a
|
3
|
+
Elaios is a transport-agnostic library for writing JSON-RPC clients and servers.
|
4
4
|
It can be used over TCP, HTTP, STOMP, and other protocols, and can be used with
|
5
5
|
threaded-, evented-, or fiber-based code.
|
6
6
|
|
@@ -256,6 +256,30 @@ release a new version, update the version number in `version.rb`, and then run
|
|
256
256
|
git commits and tags, and push the `.gem` file to
|
257
257
|
[rubygems.org](https://rubygems.org).
|
258
258
|
|
259
|
+
## Changelog
|
260
|
+
|
261
|
+
### 0.1.0
|
262
|
+
|
263
|
+
Initial commit.
|
264
|
+
|
265
|
+
### 0.1.1
|
266
|
+
|
267
|
+
Add more examples and bump Sinatra version for better compatibilty.
|
268
|
+
|
269
|
+
### 0.1.2
|
270
|
+
|
271
|
+
Added some STOMP specs.
|
272
|
+
|
273
|
+
### 0.1.3
|
274
|
+
|
275
|
+
Fix the description and add some more info to the README.
|
276
|
+
|
277
|
+
### 0.2.0
|
278
|
+
|
279
|
+
Rename `Elaios::Client` to `Elaios::Requester` and `Elaios::Server` to
|
280
|
+
`Elaios::Responder`. This is a non-breaking change (I kept aliases around so as
|
281
|
+
to not break any existing users of the library).
|
282
|
+
|
259
283
|
## TODO
|
260
284
|
|
261
285
|
* Finish filling in examples in the README.
|
data/elaios.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ['Roger Jungemann']
|
10
10
|
spec.email = ['roger@thefifthcircuit.com']
|
11
11
|
|
12
|
-
spec.summary = %q{A
|
12
|
+
spec.summary = %q{A transport-agnostic JSON-RPC client-server library.}
|
13
13
|
spec.homepage = 'https://github.com/rjungemann/elaios'
|
14
14
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/elaios/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elaios
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roger Jungemann
|
@@ -164,5 +164,5 @@ rubyforge_project:
|
|
164
164
|
rubygems_version: 2.5.1
|
165
165
|
signing_key:
|
166
166
|
specification_version: 4
|
167
|
-
summary: A
|
167
|
+
summary: A transport-agnostic JSON-RPC client-server library.
|
168
168
|
test_files: []
|