0.0
No commit activity in last 3 years
No release in over 3 years
Ruby client for the Dezi search engine. See http://dezi.org/
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

dezi-client-ruby

Ruby client for Dezi search server

Example:

require 'dezi/client'

# create a client
client = DeziClient.new(:username => 'foo', :password => 'bar')

# add some content
resp   = client.add('some/path.html')
if !resp.is_success
   raise "failed to add some/path.html"
end

# search for content
resp = client.search('q' => 'some')
resp.results.each do |result|
   puts "found #{result.uri}"
end

See http://dezi.org/

ChangeLog

1.1.2 - 2014-05-13

  • fix packaging error in gemspec with dependency version

1.1.1 - 2014-05-13

  • workaround Dezi server bug where 'fields' slot in response is null

1.1.0 - 2014-02-28

  • switch to Faraday http engine with multi-value param hack

1.0.0 - 2013-04-16

  • initial release