Ruby On Rails Developers in India

Hello ROR lovers, I wanted to list down ruby on rails developers in india. I would glad to see your name in this list. Lets, see how much rails hobbies are there in india. Thanks,SandipList goes here..................Name: Sandip RansingROR Experience: 2.1 yrsOverall: 2.8+ yrsLocation: PuneCompany: Josh Software Private Limited.Name: Amit YadavExperience: 2.5 yrsOverall: 5.8 yrsLocation: … Continue reading Ruby On Rails Developers in India

10 steps to get start with MySpace Ruby SDK

Follow 10 simple steps in order to use myspace sdk api1. Remove all your previous gems installed+ gem uninstall myspace2. Checkout sample source codesvn checkout http://myspaceid-ruby-sdk.googlecode.com/svn/trunk/ myspacesdk3. cd myspacesdk/samples/rails/sample4. Modify config/database.yml accordinglydevelopment:adapter: mysqldatabase: sample_developmentpassword: abcdpool: 5timeout: 50005. Download http://myspaceid-ruby-sdk.googlecode.com/files/myspaceid-sdk-0.1.11.gem6. gem install --local ~/Desktop/myspaceid-sdk-0.1.11.gem i.e.PATH_TO_GEM7. Above command supposed to give you following error otherwise skip to … Continue reading 10 steps to get start with MySpace Ruby SDK

–no-ri –no-rdoc for ruby gem installation

One can install gem without rdoc usinggem install GEM_NAME --no-ri --no-rdocSkip ri rdoc for all gem installation as i haven't seen anyone using it.Edit gemrc fileAdd following line to itvi ~/.gemrc:gem: --no-ri --no-rdocHere is my ~/.gemrc file---:verbose: truegem: --no-ri --no-rdoc:update_sources: true:sources:- http://gems.rubyforge.org- http://gems.github.com:backtrace: false:bulk_threshold: 1000:benchmark: falseThat's it !