pomelo-citrus-protobuf 0.0.1
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 +7 -0
- data/README.md +20 -0
- data/Rakefile +0 -0
- data/citrus-protobuf.gemspec +24 -0
- data/lib/citrus-protobuf.rb +5 -0
- data/lib/citrus-protobuf/version.rb +7 -0
- data/spec/spec_helper.rb +14 -0
- metadata +51 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 168a307d4e6a688f414ce6b72f238695a99708bb
|
4
|
+
data.tar.gz: b9f46ff95c31f35b6c1c0e5db6856c0fa054f7ae
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 38e9ceb554d2a260120e276cf03241899443455b5363c47103353eeb76dd4cd2a1c312025fc5a8a284af000beed7dac1c8986fd1d09ffd039bf2bc4586cee1fc
|
7
|
+
data.tar.gz: 3ac1eca2e84bce2945b5c00399c23a63deec6153273dc86c7da20ff9e836d821205bda52445a9f4087e4bfa59c28e81a797bc0c984111e5cd1629cdfe28f4f2e
|
data/README.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
## Welcome to pomelo-citrus-protobuf
|
2
|
+
|
3
|
+
pomelo-citrus-protobuf is a simple clone of pomelo-protobuf written in Ruby using EventMachine.
|
4
|
+
|
5
|
+
## Motivation
|
6
|
+
|
7
|
+
Since NodeJS is influenced by Ruby EventMachine and Python's Twisted model, Ruby should also be able to have its own game server framework like pomelo.
|
8
|
+
|
9
|
+
Ruby is a very expressive and eloquent programming language. I was an RoR programmer before and I really like Ruby, When developing this project, I have used many skills like meta-programming and they give me the real pleasures.
|
10
|
+
|
11
|
+
Recently, I would focus on my daily work, so I open source this project and hope to have more people participate in this project.
|
12
|
+
|
13
|
+
## Todo
|
14
|
+
|
15
|
+
This gem is empty now and it roles as a stub, this gem should implement the protobuf protocol and provide high efficient binary protocol for data encode.
|
16
|
+
|
17
|
+
## Links
|
18
|
+
|
19
|
+
* [EventMachine](https://github.com/eventmachine/eventmachine)
|
20
|
+
* [pomelo-protobuf](https://github.com/pomelonode/pomelo-protobuf)
|
data/Rakefile
ADDED
File without changes
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Author:: MinixLi (gmail: MinixLi1986)
|
2
|
+
# Homepage:: http://citrus.inspawn.com
|
3
|
+
# Date:: 16 July 2014
|
4
|
+
|
5
|
+
$:.push File.expand_path('../lib', __FILE__)
|
6
|
+
|
7
|
+
require 'citrus-protobuf/version'
|
8
|
+
|
9
|
+
Gem::Specification.new do |spec|
|
10
|
+
spec.name = 'pomelo-citrus-protobuf'
|
11
|
+
spec.version = CitrusProtobuf::VERSION
|
12
|
+
spec.platform = Gem::Platform::RUBY
|
13
|
+
spec.authors = ['MinixLi']
|
14
|
+
spec.email = 'MinixLi1986@gmail.com'
|
15
|
+
spec.description = %q{pomelo-citrus-protobuf is a simple clone of pomelo-protobuf, this gem is empty now and it roles as a stub}
|
16
|
+
spec.summary = %q{pomelo-protobuf clone written in Ruby using EventMachine}
|
17
|
+
spec.homepage = 'https://github.com/minixli/pomelo-citrus-protobuf'
|
18
|
+
spec.license = 'MIT'
|
19
|
+
|
20
|
+
spec.files = `git ls-files`.split($/)
|
21
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
22
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
23
|
+
spec.require_paths = ['lib']
|
24
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# Author:: MinixLi (gmail: MinixLi1986)
|
2
|
+
# Homepage:: http://citrus.inspawn.com
|
3
|
+
# Date:: 16 July 2014
|
4
|
+
|
5
|
+
require File.expand_path('../../lib/citrus-protobuf', __FILE__)
|
6
|
+
|
7
|
+
RSpec.configure { |config|
|
8
|
+
config.mock_with(:rspec) { |c|
|
9
|
+
c.syntax = [:should, :expect]
|
10
|
+
}
|
11
|
+
config.expect_with(:rspec) { |c|
|
12
|
+
c.syntax = [:should, :expect]
|
13
|
+
}
|
14
|
+
}
|
metadata
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pomelo-citrus-protobuf
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- MinixLi
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-26 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: pomelo-citrus-protobuf is a simple clone of pomelo-protobuf, this gem
|
14
|
+
is empty now and it roles as a stub
|
15
|
+
email: MinixLi1986@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- README.md
|
21
|
+
- Rakefile
|
22
|
+
- citrus-protobuf.gemspec
|
23
|
+
- lib/citrus-protobuf.rb
|
24
|
+
- lib/citrus-protobuf/version.rb
|
25
|
+
- spec/spec_helper.rb
|
26
|
+
homepage: https://github.com/minixli/pomelo-citrus-protobuf
|
27
|
+
licenses:
|
28
|
+
- MIT
|
29
|
+
metadata: {}
|
30
|
+
post_install_message:
|
31
|
+
rdoc_options: []
|
32
|
+
require_paths:
|
33
|
+
- lib
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ">="
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
requirements: []
|
45
|
+
rubyforge_project:
|
46
|
+
rubygems_version: 2.4.1
|
47
|
+
signing_key:
|
48
|
+
specification_version: 4
|
49
|
+
summary: pomelo-protobuf clone written in Ruby using EventMachine
|
50
|
+
test_files:
|
51
|
+
- spec/spec_helper.rb
|