Skip to content

Commit

Permalink
rename em-synchrony module
Browse files Browse the repository at this point in the history
  • Loading branch information
deepfryed committed Apr 8, 2012
1 parent e9f03a6 commit 299136c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
*.gem
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
== 0.2.1 (2012-04-08)

* Rename em/redis-synchrony -> em-synchrony/em-redislite.

== 0.2.0 (2012-04-08)

* Rewrite to include methods for most redis commands.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -43,7 +43,7 @@ Eventmachine based adapter that talks redis 2.0 protocol

```ruby
require 'em-redislite'
require 'em/redis-synchrony'
require 'em-synchrony/em-redislite'

EM.run do
EM.synchrony do
Expand Down
4 changes: 2 additions & 2 deletions em-redislite.gemspec
Expand Up @@ -2,14 +2,14 @@

Gem::Specification.new do |s|
s.name = "em-redislite"
s.version = "0.2.0"
s.version = "0.2.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bharanee Rathna"]
s.date = "2012-04-08"
s.description = "EventMachine based Redis client"
s.email = ["deepfryed@gmail.com"]
s.files = ["test/test_connection.rb", "test/test_commands.rb", "test/helper.rb", "test/test_command_expire.rb", "lib/em/redis.rb", "lib/em/redis-synchrony.rb", "lib/em-redislite.rb", "README.md", "CHANGELOG"]
s.files = ["test/test_connection.rb", "test/test_commands.rb", "test/helper.rb", "test/test_command_expire.rb", "lib/em/redis.rb", "lib/em-redislite.rb", "lib/em-synchrony/em-redislite.rb", "README.md", "CHANGELOG"]
s.homepage = "http://github.com/deepfryed/em-redislite"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.21"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/em/redis.rb
Expand Up @@ -3,7 +3,7 @@
module EM
module Redis

VERSION = '0.2.0'
VERSION = '0.2.1'
DEFAULTS = { host: '127.0.0.1', port: 6379 }

class Error < StandardError; end
Expand Down

0 comments on commit 299136c

Please sign in to comment.