# File lib/chef/data_bag.rb, line 127 def self.cdb_list(inflate=false, couchdb=nil) rs = (couchdb || Chef::CouchDB.new).list("data_bags", inflate) lookup = (inflate ? "value" : "key") rs["rows"].collect { |r| r[lookup] } end