I tweaked my setup a bit to do this, but also to set up an easy mapping to port 3000 for when I'm switching between apps. Add the host 3000.local to your /etc/hosts and then for nginx:
This library appears to be very high quality and very well thought out. It doesn't pigeonhole you into any set back-end implementation, and focuses on a very flexible and intuitive front-end.
I used ActiveScaffold on a large project in Rails 2.3. I was able to customize everything I needed but it wasn't easy for complex cases. I believe the main fork is not being upgraded to Rails 3.
I've been using ActiveAdmin and agree that it's beautiful and initially feels like a great choice to get started. However, I found myself spending a lot of time fighting the gem to build an app around it. I think it's best suited to use as a customizable scaffold system and that's it. One problem I had was that it uses a DSL-generated layout, so you can't integrate it easily into an existing app. It's really designed around management of resources, not as a general-purpose application framework. All in all, very powerful but it makes things that are easy in Rails a bit harder sometimes.
I'm investigating a switch to Rails Admin myself. It seems to be a bit less automatic and more the "Rails Way", but it may be too early to say.
Thanks again to Ryan.
I've put up a quick post on how to use this approach for warden.
http://fullware.net/prevent-rails-session-hijack-in-warden/
-Doug
www.fullware.net
I tweaked my setup a bit to do this, but also to set up an easy mapping to port 3000 for when I'm switching between apps. Add the host
3000.local
to your /etc/hosts and then for nginx:-Doug
www.fullware.net
The custom/plugins/rbates/rbates.plugin.zsh file is required, ok if it's empty.
Might want
setopt cshnullglob nullglob
in your .zshrc as well to avoid wildcard errors bombing the script.This library appears to be very high quality and very well thought out. It doesn't pigeonhole you into any set back-end implementation, and focuses on a very flexible and intuitive front-end.
-Doug Puchalski
PENSCO
fullware
I used ActiveScaffold on a large project in Rails 2.3. I was able to customize everything I needed but it wasn't easy for complex cases. I believe the main fork is not being upgraded to Rails 3.
I've been using ActiveAdmin and agree that it's beautiful and initially feels like a great choice to get started. However, I found myself spending a lot of time fighting the gem to build an app around it. I think it's best suited to use as a customizable scaffold system and that's it. One problem I had was that it uses a DSL-generated layout, so you can't integrate it easily into an existing app. It's really designed around management of resources, not as a general-purpose application framework. All in all, very powerful but it makes things that are easy in Rails a bit harder sometimes.
I'm investigating a switch to Rails Admin myself. It seems to be a bit less automatic and more the "Rails Way", but it may be too early to say.