public
Description: A ruby client for freebase
Clone URL: git://github.com/dustin/ruby-freebase.git
commit  a056cc827be830129c4a737484c77feaedabe683
tree    94d1b2b6983797d3150fe41bead981c5c70d2b97
parent  a631c2035df055d70560a7a7a248a146cc1ee69f
ruby-freebase / README
100644 32 lines (23 sloc) 1.072 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
= Freebase
This Ruby-on-Rails plugin provides access to the Freebase API
(http://www.freebase.com). Freebase is a collaborative, semantic database
similar to Wikipedia only for structured data. Freebase.com provides a
JSON-over-HTTP API that this library uses.
 
Currently only reads are implemented. Contributions, API Suggestions, bug
reports are welcome!
 
This code is ALPHA. The API will change, features will be added. It probably
has a bug or two in it. Use it at your own peril.
 
Author:: Christopher Eppstein (mailto:chris@eppsteins.net)
Copyright:: Copyright (c) 2007 Christopher Eppstein
License:: Released under the MIT license
 
== Installation
Install the plugin:
script/plugin install svn://rubyforge.org/var/svn/freebaseapi/trunk/freebase
 
Then copy freebase.yml to your rails config directory
 
== Usage Examples
See the following examples:
* albums.rb[link:../examples/albums.rb]
 
== Contributors
* Pat Allan (mailto:pat@freelancing-gods.com) provided code snippets that
  exemplified automatic freebase class creation when the class is first
  referenced.