Using Google Gears with Rails - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T18:51:00Zhttp://stackoverflow.com/feeds/question/699492http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/699492/using-google-gears-with-rails1Using Google Gears with Railssalt.racer2009-03-30T23:44:50Z2009-12-02T21:36:44Z
<p>I have been tasked with exploring the possibility of offline access of my webapp. What are people's experiences using google gears with rails? I am aware of the <a href="http://gearsonrails.googlecode.com" rel="nofollow">gearsonrails</a> project, but it has some really strange constructs and doesn't appear to be under significant, active development.</p>
<p>Are there other options? Has anyone added gears to their existing rails app successfully? Is this super-painful?</p>
http://stackoverflow.com/questions/699492/using-google-gears-with-rails/1210374#12103740Answer by Matthew Savage for Using Google Gears with RailsMatthew Savage2009-07-31T02:23:55Z2009-07-31T02:23:55Z<p>I am looking into this myself - generally the idea is that depending on what you want to make available offline you need to setup on the client side (note, this is untested, and hence unverified - I'm just going from my understanding of what I have read - although I am planning on doing some experimentation in the next few weeks...)</p>
<p>In most situations I would recommend setting up standard restful resources with Rails, and then in your client library do something like the following:</p>
<ol>
<li>When the page is loaded, determine if Gears has loaded, and if your database is available on the client.</li>
<li>Create the database if necessary.</li>
<li>Using the worker process, intialize a call into your RESTful controller to obtain the data you need - and on the return of the data write it into the local database (using the worker process will allow for a 'multi threaded' experience and make sure you dont lock up the client.</li>
<li>Periodically poll the remote server checking for changes in the data - if needed pull down a fresh set and reload the local data cache.</li>
<li>When the client is offline switch to using the local client database.</li>
</ol>
<p>Obviously this is a read-only example, and relies on the existing architecture using AJAX client side calls to populate data in the page etc.</p>
<p>Your means might vary, but I recommend just having a play around - remember you don't <em>have</em> to use Rails plugins etc to do this - you can just roll the client side script by yourself - and you never know, once your done you might be able to refactor your work out into a great little gem or similar...</p>
http://stackoverflow.com/questions/699492/using-google-gears-with-rails/1835982#18359821Answer by Steve Graham for Using Google Gears with RailsSteve Graham2009-12-02T21:36:44Z2009-12-02T21:36:44Z<p>Google Gears is <a href="http://www.pcpro.co.uk/news/353821/google-gears-grinds-to-a-halt" rel="nofollow">dead</a>, development has ceased. You're better off trying to solve your problem using HTML5, which implements APIs that make offline access possible (a client side database that can be queried using a SQL like language and a key-value store.) At this point, none of the major browsers completely implement the (developing) standard. So you have to make the decision between developing against a de facto obsolete plugin, or targeting an emerging standard.</p>