Skip to content

Commit

Permalink
Version bump and publish Ably fork of Gem until binary support merged…
Browse files Browse the repository at this point in the history
… in upstream

See msgpack#45
  • Loading branch information
mattheworiordan committed Dec 3, 2014
1 parent b121776 commit c924231
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/msgpack/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module MessagePack
VERSION = "0.5.9"
VERSION = "0.5.10"
end
2 changes: 1 addition & 1 deletion msgpack.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
require 'msgpack/version'

Gem::Specification.new do |s|
s.name = "msgpack"
s.name = "msgpack-ably"
s.version = MessagePack::VERSION
s.summary = "MessagePack, a binary-based efficient data interchange format."
s.description = %q{MessagePack is a binary-based efficient object serialization library. It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small.}
Expand Down
7 changes: 5 additions & 2 deletions msgpack.org.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# MessagePack for Ruby
# Ably fork of MessagePack for Ruby

This fork is needed until [the binary support PR](https://github.com/msgpack/msgpack-ruby/pull/45) is added to the [origin MessagePack gem](https://github.com/msgpack/msgpack-ruby).

```
require 'msgpack'
Expand All @@ -9,7 +11,7 @@ MessagePack.unpack(msg) #=> [1,2,3]
## Install

```
gem install msgpack
gem install msgpack-ably
```

## Use cases
Expand All @@ -22,6 +24,7 @@ gem install msgpack

* [Github](https://github.com/msgpack/msgpack-ruby)
* [API document](http://ruby.msgpack.org/)
* [MessagePack spec](https://github.com/msgpack/msgpack/blob/master/spec.md)

## Streaming API

Expand Down

0 comments on commit c924231

Please sign in to comment.