...
Em 05-06-2012 00:17,
Maurizio Casimirri escreveu:The problem relies in the gems
in my opinion. They should follow the SRP instead of just
assuming things to get a broader range of users.
You are right, but you can say now that all the gem
creators take this into account?
That is just how open-source and community-driven development work

Even if there are any
interface “keyword” in Ruby, you can still write interfaces
in a number of ways.
You are right again, i'm not saying that the missing of an
interface keyword is a problem by itself but i’m concerned to
the fact that due to this many times ruby libraries expose the
implementation to the client code (eg. we need to call
#arel_table).
If you just need the table name, you can just use
YourModel.tablename I guess:
http://api.rubyonrails.org/classes/ActiveRecord/ModelSchema/ClassMethods.html#method-i-table_name
Man, it was really hard to get this specific link from the API. I
needed to show the frame source in Chrome and then extract the
“source:” prefix… Having an API based on frames already sucks, but
not being able to right or midle-click the link in the left panel
makes it even worse.
Also and probably more often, libraries API will change
when implementation changes.
Having an interface does not provide any guarantees per se. I
maintain a Grails application and their API has changed in a minor
upgrade (2.0.1 → 2.0.2) despite Groovy and Java providing
“interface” as a keyword. Having a void implementation won’t help
here. If you don’t want something to change in the Rails community
that usually means writing a test for it.
…
So, this time I think
Rails is currently very well designed and I’d like to thank
a lot Yehuda, José Valim,
Piotr Sarnacki and all core developers for the excelent job
they did on making Rails more modular and easy to extend
with Engines. A lot of unnecessary dependency was cut off
and Rails just doesn’t seem to be the issue anymore for
adopting alternative solutions like testing framework, orm
and JavaScript library. This was really a great engineering
design and the Rails community should be proud of their code
base.
Educating gem authors to follow Rails' example should be
much easier and less painful.
Well here i see a misunderstanding i don't think that Rails
has a bad design but that it can move to an approach that is a
bit more friendly to enterprise applications where it doesn’t
make things too complicated in order to make our applications
more maintainable and age resistant.
Well, this argument often pops out in the Rails community. I won't
repeat myself on my own opinions:
http://rosenfeld.herokuapp.com/en/articles/ruby-rails/2012-03-04-should-we-move-forward-or-remain-backward-compatible
https://groups.google.com/forum/#!topic/rubyonrails-core/fTvmRxtFGcE/discussion
Probably i need to cite someone that is better than me: http://www.languageparallax.com/wordpress/?p=39
I had the feeling that a more enterprise-oriented approach
can be achieved in rails when i looked at play framework,
(even if the current version is a nearly unusable mess due to
its young age) it proves that there are ways to fill the gap
between enterprise requirements and simplicity and quickness
belonging to agile frameworks like rails.
Yes, this is possible, but I don't want that in Rails. That is
because if you want to keep backward-compatibility at all costs
you’ll end up with a code base that is hard to maintain and
inconsistent and will prevent you from moving forward sometimes.
For example, I don't make any effort for making my own gems
compatible with Ruby 1.8 because I simply don’t like to write hashes
like {:symbol => value}, preferring {symbol: value} much more.
When you have to remain backward-compatible to Ruby 1.8 support, it
means more code to maintain which can be really a pain.
This is valid for most other backward compatible decisions.
I'know that you don't like it but sometimes i prefer data
mapper and domain driven design over active record and
database driven design, the same way i would like to see a
two-step view approach for views.
All of them are valid engineering decisions and I don't believe
there is a right way of doing things. I like to say that Rails is
just Ruby. It is a glue that will help you start coding your
applications helping you with decisions you don’t care about, like
what database or ORM or template engine or test framework or
JavaScript framework you should work. If you don’t care about them,
let Rails choose a default one for you. If you do care, then change
the defaults. For example, I opted for jQuery when Prototype was the
default. I opt for RSpec for testing as well as Sequel for ORM. And
opting for other tools in Rails is damn simple nowadays.
There is no reason why someone should really try to keep with Rails
defaults nowadays IMO. You should keep thinking on your app as an
application like you would do in Java or any other
language/framework. Rails will just help taking some unimportant
decisions for you by default unless you care about them.
So, if DataMapper makes more sense for you, I'd go for it if I were
you. The same for your views although I have no idea what two-step
views mean. Personally I use a SimpleDelegator class as a presenter
for my JSON representations, for example if that is what you mean…
If for the latter there are no problems (i can quickly
implement it with a few lines of code and only my views will
depend on it) for the first one i’ve a lot of trouble due to
the lack of solid support, since i don’t think that rails will
drop AR my proposal is to have at least a complete
querying/mapping interface that can bridge the gap from ORMs.
The lack of a well defined and documented API is a blocker issue for
me and probably the main reason I stopped using it. So, I heartedly
agree with you on that one. Also, any internal implementation detail
should be hidden from the API documentation.
In any case i will look at Sequel, now i’m too curious! 
Let me know (outside this list) if you have any questions about it.
Cheers,
Rodrigo.