search for: doclist

Displaying 2 results from an estimated 2 matches for "doclist".

Did you mean: dclist
2012 Jul 25
1
[LLVMdev] [RFC] YAML I/O
...); To write a yaml documents your code looks like: void dump(PersonList &persons, raw_ostream &out) { Output yout(out); yout << persons; } To read a yaml document your code looks like: void readYaml(StringRef filePath) { Input yin(filePath); DocumentList<PersonList> docList; yin >> docList; // if there was an error parsing, message already printed out if ( yin.error() ) return; for(PersonList &pl : docList) { for(Person &person : pl) { // process each Person } } } YAMLIO also handles semantic error checking for you. F...
2010 Jul 07
0
Integration Google Apps with Ruby on rails Application
Hi, I need to integrate google apps/google service like Calendar API and Doclist API.Anyone can advice me which gem or plugins is available for serve all this purpose. GDOC4RUBY gem is not working in my system.It is giving error for the line require ''gdoc4ruby'' error message : no such file to load -- gdoc4ruby I have used gcal4ruby gem , it is worki...