Ruby On Rails html5 storing a standalone CRUD application with or without ActiveScaffold

I am currently creating a web application using Ruby On Rails with ActiveScaffold. And I would like to know if there is any plugin / library that would allow my Rails application to work offline, for example. the user can view some data and make changes while the user disconnects, after the user connects to the network again, the data will simply be synchronized.

+4
source share
1 answer

Check out the Ryan Bate excellent Railscasts here:

Offline applications, part 1 , refers to the rack offline

Offline Applications Part 2 includes jquery-tmpl and jquery-offline.

Or, read them on Asciicast

http://asciicasts.com/episodes/247-offline-apps-part-1

http://asciicasts.com/episodes/248-offline-apps-part-2

+5
source

Source: https://habr.com/ru/post/1339563/


All Articles