mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 18:54:58 +00:00
library clients update scripts
This commit is contained in:
parent
9495122b18
commit
0bd06e524a
30
client-libraries/ruby/redis-rb.gemspec
Normal file
30
client-libraries/ruby/redis-rb.gemspec
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# -*- 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
|
2
client-libraries/update-erlang-client.sh
Executable file
2
client-libraries/update-erlang-client.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
echo "Sorry for now this must be done by hand... don't know mercurial enough"
|
12
client-libraries/update-lua-client.sh
Executable file
12
client-libraries/update-lua-client.sh
Executable file
@ -0,0 +1,12 @@
|
|||||||
|
#!/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
|
10
client-libraries/update-perl-client.sh
Executable file
10
client-libraries/update-perl-client.sh
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#!/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
|
12
client-libraries/update-ruby-client.sh
Executable file
12
client-libraries/update-ruby-client.sh
Executable file
@ -0,0 +1,12 @@
|
|||||||
|
#!/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
|
Loading…
Reference in New Issue
Block a user