ROADMAP in sinatra_more-0.3.18 vs ROADMAP in sinatra_more-0.3.21
- old
+ new
@@ -21,14 +21,15 @@
* sinatra-cache (page and fragment caching support)
* sinatra-admin (admin management dashboard for content) <= from Lipsiadmin (ported)
Additional wish-list features (integrate existing plugin) (?)
+ * Reloading Support - http://github.com/alexch/rerun
* Internationalization - http://r18n.rubyforge.org/#sinatra
* Asynchronous Commands - http://github.com/deadprogrammer/spork
* Capistrano Deployment - http://github.com/nakajima/capinatra (?)
- * Job Queue - http://github.com/adamcooke/resque (or http://github.com/bmizerany/sinatra-dj)
+ * Job Queue - http://github.com/adamcooke/resque (or http://github.com/bmizerany/sinatra-dj)
'sinatra-cache' Caching concept:
# in models
class Person
@@ -77,6 +78,11 @@
namespace.map(:show).to("/my-admin/:id/show")
end
# and to use
link_to "Show Admin", url_for(:admin, :show, :id => 5)
- link_to "Accounts", url_for(:accounts)
+ link_to "Accounts", url_for(:accounts)
+
+'commands' Concept: (console (?) http://github.com/sickill/racksh)
+
+ $ sinatra_more console # loads console for sinatra
+ $ sinatra_more test # runs all test using specified testing framework
\ No newline at end of file