Ruby Frameworks? Which one? Bye bye Rails.
slideshare.net
Ruby Frameworks? Which one? Bye bye Rails.
1–10 of 93 posts
Re: Ruby Frameworks? Which one? Bye bye Rails.
#2Now, if someone would write Padrino with Python, I'd be one really happy camper!
Re: Ruby Frameworks? Which one? Bye bye Rails.
#3I also wonder if this is just turning Sinatra into Rails. I think for the now I prefer to just build a Sinatra app and add gems and plugins as I need them.
Re: Ruby Frameworks? Which one? Bye bye Rails.
#4Re: Ruby Frameworks? Which one? Bye bye Rails.
#5I definitely love Sinatra, and I'm impressed by the admin interface, but it looks like there's no support for DataMapper as an ORM. I also wonder if this is just turning Sinatra into Rails. I think for the now I prefer to just build a Sinatra app and add gems and plugins as I need them.
(As for the admin interface, their site claims it has DataMapper support)
Re: Ruby Frameworks? Which one? Bye bye Rails.
#6But besides that, I feel that in recent times development is moving much more to the client - and client code like Javascript/CoffeeScript, Java for Android and Objective C, is getting much bigger at the expense of server side code. This is recently evidenced by the new 37signals Basecamp Next app which is 50/50 CoffeeScript/Ruby.
So the server side programming is on track to becoming "just" a API endpoint for all these different technologies and I think micro frameworks like Flask and Padrino are very well suited for that.
Re: Ruby Frameworks? Which one? Bye bye Rails.
#7I definitely love Sinatra, and I'm impressed by the admin interface, but it looks like there's no support for DataMapper as an ORM. I also wonder if this is just turning Sinatra into Rails. I think for the now I prefer to just build a Sinatra app and add gems and plugins as I need them.
I admit that sometimes I miss generators, but Sinatra's boilerplate code is so minimal that I just don't care much anymore.
Re: Ruby Frameworks? Which one? Bye bye Rails.
#8My work was using latest Padrino framework at work, but extremely unhappy with the its performance (slow response). We had ported the app to Rails 3.1 for better performance. (We will upgrade it to 3.2 soon)
In fact, I think Padrino is pretty ideal for personal and small apps. Not really ideal for medium to large apps.
Just my opinion and experience.
Re: Ruby Frameworks? Which one? Bye bye Rails.
#9Re: Ruby Frameworks? Which one? Bye bye Rails.
#10You can remove the big rails modules if you don't need them (activesupport, activemailer, activerecord,. ..) but also the rack middlewares.