elaios 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb3a63d440b258a47eaef76666516aa339cb7eb0
4
- data.tar.gz: 7546d5615fbe998b42cf2eafeaa9d39a78b8cebd
3
+ metadata.gz: d790db6205de1eac878248f3fb57067a35a4e35a
4
+ data.tar.gz: ee087c968d7358c51431b1a5cdae4335ec2ae3a3
5
5
  SHA512:
6
- metadata.gz: 1a4d03700d694332bc60523732c51992864f50a745889b80dab8d40906c5b2d04468bb5f85ac9890e8ed7ff61728c92c15f2cf273a56054b1e357c0c3ae767e1
7
- data.tar.gz: 3210b5354e55a5c6e3616956e1738184ed042fa7693903ba9d1115bf844f73351878622ed099884230dfbf18e3d95e3e8848cc87d16908e9f0f3e3892984f518
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 protocol-agnostic library for writing JSON-RPC clients and servers.
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.
@@ -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 protocol-agnostic JSON-RPC client-server library.}
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)/}) }
@@ -1,3 +1,3 @@
1
1
  module Elaios
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
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.2
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 protocol-agnostic JSON-RPC client-server library.
167
+ summary: A transport-agnostic JSON-RPC client-server library.
168
168
  test_files: []