redis_logger_device 0.0.1 → 0.0.2

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.
data/README.markdown CHANGED
@@ -4,15 +4,7 @@ With this library, you can inject log into Redis queue and process it this worke
4
4
 
5
5
  ## Installation
6
6
 
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'redis_logger_device'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
7
+ Install it yourself as:
16
8
 
17
9
  $ gem install redis_logger_device
18
10
 
@@ -3,7 +3,7 @@ module RedisLoggerDevice
3
3
 
4
4
  def initialize(logger, queue_name=DEFAULT_QUEUE_NAME, redis_opts={})
5
5
  @logger = logger
6
- @queue_name = DEFAULT_QUEUE_NAME
6
+ @queue_name = queue_name
7
7
  @redis = Redis.new(redis_opts)
8
8
  end
9
9
 
@@ -1,3 +1,7 @@
1
1
  module RedisLoggerDevice
2
- VERSION = "0.0.1"
2
+ MAJOR = 0
3
+ MINOR = 0
4
+ TINY = 2
5
+
6
+ VERSION = [MAJOR, MINOR, TINY].join('.')
3
7
  end
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
6
6
  gem.email = ["samuel@pagedegeek.com"]
7
7
  gem.description = %q{With this library, you can inject log into Redis queue and process it this worker}
8
8
  gem.summary = %q{Simple Device for Logger}
9
- gem.homepage = "http://www.github.com/pagedegeek"
9
+ gem.homepage = "https://github.com/PagedeGeek/redis_logger_device"
10
10
 
11
11
  gem.files = `git ls-files`.split($\)
12
12
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis_logger_device
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-30 00:00:00.000000000 Z
12
+ date: 2012-05-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -52,7 +52,7 @@ files:
52
52
  - redis_logger_device.gemspec
53
53
  - test/base_test.rb
54
54
  - test/simple_log_worker_test.rb
55
- homepage: http://www.github.com/pagedegeek
55
+ homepage: https://github.com/PagedeGeek/redis_logger_device
56
56
  licenses: []
57
57
  post_install_message:
58
58
  rdoc_options: []