Reputation: 1033
Should I follow edge Rails from the beginning? Or just pickup the latest stable release and upgrade as new versions come about?
Should I give users more freedom on authorization settings? Example: fine grained authorization in Django's admin interface
I think testing is a must, but I have no idea which testing framework to start with, Test::Unit/Minitest/RSpec and Cucumber?
Haml or ERB?
p.s. Only one developer - me at this time.
Upvotes: 1
Views: 107
Reputation: 7230
It's my opinion but there is nothing definitive.
Try it and do your own opinion.
Upvotes: 1
Reputation: 28554
1) Latest stable, upgrade as needed/desired.
2) Depends on the application, there's a lot of great plugins/gems that do authorization/authentication so there's bound to be something out there to match you and your users needs.
3) Easiest to stick with the built in Test::Unit for starters.
4) Again, go with the built in ERB at first.
IMO. YMMV.
Upvotes: 2