pomelo-citrus-logger 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ebed2e20150192ee70979666baeab54232764f20
4
+ data.tar.gz: f94bf4f8a9295a41cf3ecbdb54bcf6dd79ba6659
5
+ SHA512:
6
+ metadata.gz: 85392da878bbd05e2b9a7654fd34834f6db82ee9e7cd403356e08c82513fe8f011ae159e4e40ac1d6723491e1529da7a2b4f7efa82aa052a54f28e63874dee97
7
+ data.tar.gz: c4f46c92e7d41affc36e084328323df8a5e10327c4f8e50efe966c8254c83739003eb6408665f666fc0ed3b2413ef62aed1a5569c8fbb57842cfe0b987deb604
@@ -0,0 +1,20 @@
1
+ ## Welcome to pomelo-citrus-logger
2
+
3
+ pomelo-citrus-logger is a simple clone of pomelo-logger 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 function as a logger wrapper of log4r for pomelo logger system.
16
+
17
+ ## Links
18
+
19
+ * [EventMachine](https://github.com/eventmachine/eventmachine)
20
+ * [pomelo-logger](https://github.com/NetEase/pomelo-logger)
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-logger/version'
8
+
9
+ Gem::Specification.new do |spec|
10
+ spec.name = 'pomelo-citrus-logger'
11
+ spec.version = CitrusLogger::VERSION
12
+ spec.platform = Gem::Platform::RUBY
13
+ spec.authors = ['MinixLi']
14
+ spec.email = 'MinixLi1986@gmail.com'
15
+ spec.description = %q{pomelo-citrus-logger is a simple clone of pomelo-logger, this gem is empty now and it roles as a stub}
16
+ spec.summary = %q{pomelo-logger clone written in Ruby using EventMachine}
17
+ spec.homepage = 'https://github.com/minixli/pomelo-citrus-logger'
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
@@ -0,0 +1,5 @@
1
+ # Author:: MinixLi (gmail: MinixLi1986)
2
+ # Homepage:: http://citrus.inspawn.com
3
+ # Date:: 16 July 2014
4
+
5
+ $:.unshift(File.dirname(__FILE__) + '/../lib')
@@ -0,0 +1,7 @@
1
+ # Author:: MinixLi (gmail: MinixLi1986)
2
+ # Homepage:: http://citrus.inspawn.com
3
+ # Date:: 16 July 2014
4
+
5
+ module CitrusLogger
6
+ VERSION = '0.0.1'
7
+ end
@@ -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-logger', __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-logger
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-logger is a simple clone of pomelo-logger, this gem is
14
+ 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-logger.gemspec
23
+ - lib/citrus-logger.rb
24
+ - lib/citrus-logger/version.rb
25
+ - spec/spec_helper.rb
26
+ homepage: https://github.com/minixli/pomelo-citrus-logger
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-logger clone written in Ruby using EventMachine
50
+ test_files:
51
+ - spec/spec_helper.rb