Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
0bd06e52
Commit
0bd06e52
authored
Apr 08, 2009
by
antirez
Browse files
library clients update scripts
parent
9495122b
Changes
5
Show whitespace changes
Inline
Side-by-side
client-libraries/ruby/redis-rb.gemspec
0 → 100644
View file @
0bd06e52
# -*- encoding: utf-8 -*-
Gem
::
Specification
.
new
do
|
s
|
s
.
name
=
%q{redis-rb}
s
.
version
=
"0.0.3"
s
.
required_rubygems_version
=
Gem
::
Requirement
.
new
(
">= 0"
)
if
s
.
respond_to?
:required_rubygems_version
=
s
.
authors
=
[
"Ezra Zygmuntowicz"
,
"Taylor Weibley"
]
s
.
autorequire
=
%q{redis}
s
.
date
=
%q{2009-03-31}
s
.
description
=
%q{Ruby client library for redis key value storage server}
s
.
email
=
%q{ez@engineyard.com}
s
.
extra_rdoc_files
=
[
"LICENSE"
]
s
.
files
=
[
"LICENSE"
,
"README.markdown"
,
"Rakefile"
,
"lib/redis.rb"
,
"lib/dist_redis.rb"
,
"lib/hash_ring.rb"
,
"lib/server.rb"
,
"lib/better_timeout.rb"
,
"spec/redis_spec.rb"
,
"spec/spec_helper.rb"
]
s
.
has_rdoc
=
true
s
.
homepage
=
%q{http://github.com/winescout/redis-rb}
s
.
require_paths
=
[
"lib"
]
s
.
rubygems_version
=
%q{1.3.1}
s
.
summary
=
%q{Ruby client library for redis key value storage server}
if
s
.
respond_to?
:specification_version
then
current_version
=
Gem
::
Specification
::
CURRENT_SPECIFICATION_VERSION
s
.
specification_version
=
2
if
Gem
::
Version
.
new
(
Gem
::
RubyGemsVersion
)
>=
Gem
::
Version
.
new
(
'1.2.0'
)
then
else
end
else
end
end
client-libraries/update-erlang-client.sh
0 → 100755
View file @
0bd06e52
#!/bin/sh
echo
"Sorry for now this must be done by hand... don't know mercurial enough"
client-libraries/update-lua-client.sh
0 → 100755
View file @
0bd06e52
#!/bin/sh
rm
-rf
temp
mkdir
temp
cd
temp
git clone git://github.com/nrk/redis-lua.git
cd
redis-lua
rm
-rf
.git
cd
..
cd
..
rm
-rf
lua
mv
temp/redis-lua lua
rm
-rf
temp
client-libraries/update-perl-client.sh
0 → 100755
View file @
0bd06e52
#!/bin/sh
rm
-rf
temp
mkdir
temp
cd
temp
svn checkout svn://svn.rot13.org/Redis/
find
.
-name
'.svn'
-exec
rm
-rf
{}
\;
2> /dev/null
cd
..
rm
-rf
perl
mv
temp/Redis perl
rm
-rf
temp
client-libraries/update-ruby-client.sh
0 → 100755
View file @
0bd06e52
#!/bin/sh
rm
-rf
temp
mkdir
temp
cd
temp
git clone git://github.com/ezmobius/redis-rb.git
cd
redis-rb
rm
-rf
.git
cd
..
cd
..
rm
-rf
ruby
mv
temp/redis-rb ruby
rm
-rf
temp
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment