Hi all, Veering new to rails and ruby it took me a few weeks to get a good stable installation of hobo working. I made some notes (hence them being past tense) for my own personal reference and thought it may be useful if I shared them.
This was to instal hobo 1.3.0pre2 and may need a bit of tweaking for the full 1.3.0 release. Please feel free to comment/improve the process for future users/noobs who may struggle like I did... 1. Installed ruby 1.9.2 p290 2. Downloaded and installed RubyGems 1.8.11 - ruby setup.rb 3. Installed devkit - ruby dk.rb init & ruby dk.rb install 4. Installed Rails - gem install rails -v 3.0.10 --include- dependencies 5. Made sure the only remote resource was rubygems.org 6. Installed hobo - gem install hobo --pre --no-ri --no-rdoc 7. Installed sqlite3 - gem install sqlite3 8. Copied sqlite dll and def files into C:\ruby192\bin 9. Installed earlier version of will_paginate - gem install will_paginate -v 3.0.pre2 10. Add gem dependency to sites gemfile - gem "will_paginate", "3.0.pre2" 11. Unlock the bundle - bundle update will_paginate 12. Do a Bundle Install on the site 13. Uninstall will_paginate version 3.0.pre4 - gem uninstall will_paginate -v 3.0.pre4 Cheers, Drammy -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
