summaryrefslogtreecommitdiff
path: root/ruby/destroy-all-user-dbs
diff options
context:
space:
mode:
Diffstat (limited to 'ruby/destroy-all-user-dbs')
-rwxr-xr-xruby/destroy-all-user-dbs14
1 files changed, 0 insertions, 14 deletions
diff --git a/ruby/destroy-all-user-dbs b/ruby/destroy-all-user-dbs
deleted file mode 100755
index 84cec56..0000000
--- a/ruby/destroy-all-user-dbs
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/ruby
-
-require 'couchrest'
-
-server = CouchRest::Server.new
-
-server.databases.each do |db_name|
- if db_name =~ /^user-[a-f0-9]{32}$/
- server.database(db_name).delete!
- end
-end
-
-
-