Metaprogramming Ruby 84
scottl writes "Metaprogramming Ruby is the first book to give an in-depth and readable explanation of how dynamic programming works in Ruby. It is both readable and accurate and will be a valuable resource to intermediate and probably advanced Ruby programmers for some time to come." Keep reading for the rest of scottl's review.
Metaprogramming Ruby is not a book for programmers new to Ruby, but would make an excellent follow on book to either Programming Ruby by Dave Thomas, Chad Fowler, and Andy Hunt or The Ruby Way by Hal Fulton. Both of the above books have chapters on or at least mention metaprogramming, but this is the first full length exposition of it. The book itself is broken into two sections and four appendices. In the first section, you (the reader) is paired with a more experienced programmer for a week, a chapter for each day, and as the week progresses you cover different topics in metaprogramming after being given tasks by your boss. The second section has two chapters on the design and implementation of ActiveRecord from Rails as well as a chapter on safe metaprogramming. Finally, there are three very useful appendices and a bibliography. One other note is that the book has the concept of "spells". Each concept as it is discussed in the book will have a spell associated with it. There will be a note in the sidebar with the name of the spell and the third appendix has the spells listed in alphabetical order, a short example of the spell, and a page number linking back to the extended discussion of the spell.Metaprogramming Ruby | |
author | Paolo Perrotta |
pages | 261 |
publisher | Pragmatic Bookshelf |
rating | 9 |
reviewer | scottl |
ISBN | 978-1-93435-647-0 |
summary | Metaprogramming Ruby is an excellent introduction to dynamic and metaprogramming using Ruby. It will be useful to intermediate and advanced users of Ruby and potentially even to beginners with some programming experience. |
The first chapters are an informal introduction to metaprogramming where the reader, just starting a new job, is paired with Bill, an experienced developer, for a week. Each day is a chapter and each chapter covers a specific topic. The topics, as might be expected, increase in complexity as the week goes on. This more informal style actually works quite well. I had expected to be a bit irritated with the "schtick", but it turns out that Perrotta does not use it to excess. The topics covered here are Monday: The Object Model, Tuesday: Methods, Wednesday: Blocks, Thursday: Class Definitions, and Friday: Code That Writes Code.
Chapter 1 on Monday starts out with you meeting Bill, your experienced pair programmer, on a Monday morning and then goes straight into the Ruby object model. It discusses reopening classes to add additional methods including predefined Ruby classes such as String. It follows up with Monkey Patching (opening an existing class and redefining an existing method) and the pitfalls therein.
In Chapter 2, methods are examined. Perrotta goes over a problem with duplicated code and how to reduce this code by generating and calling code dynamically. He then moves to showing the same example using method_missing(), followed by adding a change to respond_to? to make sure the methods show up.
Wednesday's topic in Chapter 3 covers blocks, lambdas, and procs all of which are really just "callable objects". The chapter starts with a review of blocks. This is followed by a discussion of scopes and how to carry variables through scopes using blocks as closures. Perratto shows how to use instance_eval() to receive blocks and then use them to manipulate scopes. Next, converting blocks into "callable objects", lambdas and Procs, and then calling them later is covered. Finally, there's a short introduction to domain specific languages (DSL) using the the techniques from this chapter.
Chapter 4 or Thursday covers class definitions. A discussion of self and the current class open the chapter. There's also a section on singleton methods and eigenclasses. There are class instance variables, variables that belong to the class and not to a particular object. Examples of class macros, such as attr_reader, attr_writer, and attr_accessor, and how to write them are shown. Finally he covers around aliases where method names can be renamed and then redefined but the original is still available.
The final day of the week, Friday, Chapter 5, goes deep into Ruby metaprogramming with code that writes code. In this chapter, Perrotta shows how to implement an "attr_checked" attribute in a few different ways starting with a kernel method using eval and moving on to passing the validation attributes in a block. Then this gets moved to a class macro (from Chapter 4), and finally moving on to using a module with hooks. This last is a pattern that's seen in many Ruby projects including Rails and two I'm familiar with, Sequel and Ramaze.
The second section, Metaprogramming in Rails, consists of two chapters on ActiveRecord and a final chapter on metaprogramming safely. In the first two chapters, Perrotta takes a tour through
ActiveRecord, the Rails object relational mapper (ORM) and shows how ActiveRecord uses the tips and techniques from the previous chapters. The final chapter on safe metaprogramming discusses how to test metaprogramming and working around and with to make sure that monkey patching doesn't cause problems.
Finally, there are three appendices. The first shows common Ruby idioms that are seen pretty much in all Ruby code. They provide a good review, but I'm not sure how useful they really are for the audience that this book is aimed at. The second appendix is one DSLs. This is also a nice to have, but there's probably not enough to let you program a DSL if you don't have additional help from somewhere. The final appendix really is almost worth the price of the book. It contains a list of metaprogramming "spells". Each of the spells contains a short programming example as well as the page number with the longer explanation. This is incredibly useful when looking at code from any of the major frameworks (some mentioned above) and you don't understand a piece of it. Just by scanning through the spells you can often find a simple version of what you're looking at and then read a longer explanation.
All in all, this is one of the better, more readable programming books that I've read in a long while. Perrotta keeps it to around 250 pages including the appendices and it's packed full of useful information. As I noted above, this book is highly recommended as a second Ruby book. The presentation of metaprogramming is both enjoyable and useful and the book itself is well written.
You can purchase Metaprogramming Ruby from amazon.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.
Hmm (Score:1, Informative)
I don't think most people give a crap about Ruby in general. Why not just use a programming language that does it right?
Re: (Score:2)
"Why not just use a programming language that does it right?"
Unfortunately, most people *don't* program in Factor.
Re: (Score:2)
(Whitespace? Really? Are you kidding?)
All I have to say is: being the fastest-growing programming language right now, Ruby must have something going for it.
Why, do they start typing in the subject.. (Score:5, Funny)
and finish their sentence in the paragraph?
A: Because it breaks the flow of a message (Score:3, Insightful)
Re: (Score:1)
Re: (Score:1)
new era hats [topbrandhats.com]
new era hats
new era caps
one industries hats
Rockstar Energy Hats
rockstar energy hats
monster energy hats
Red Bull Caps
The Hundreds Hats
nfl hats
Supreme Hats
DC Comics Hats DC Comics Hats[/url]
Not dynamic programming... (Score:4, Informative)
The summary mentions dynamic programming; but this book contains nothing about dynamic programming. (A particular method suitable to problems with optimal substructure that can be used in a subset of cases where recursion can be used and typically generates results very quickly.)
The author, who I've seen speak, instead writes about "metaprogramming" which in my personal opinion is a silly catch phrase to sell talks and books when actually he's just talking about using some of the advanced functionality present in Ruby (and also JavaScript) to do things that would be done with macros or can't be done at all in traditional object oriented and procedural languages.
If you're buying this book thinking it contains some new breakthrough paradigm, and you're already familiar with the ins and outs of Ruby prepare to be disappointed. If your background is Java or C++ and you've just learned enough to get by until now it'll probably be an eye-opener.
Re:Not dynamic programming... (Score:4, Informative)
When the author said dynamic, he was using it to refer to the dynamic language [wikipedia.org] features of Ruby, not dynamic programming.
Re: (Score:2)
I don't disagree. He worded it poorly.
Re:Not dynamic programming... (Score:4, Funny)
Re: (Score:2)
When I catch my developers using these techniques, we have a nice little chat about writing maintainable code, and then their code gets reworked.
God, nothing is more annoying than an opinionated boss that starts sticking his fingers in your code.
cause nothing but problems when it comes to maintainability
Yes, because it's much more maintainable to keep repeating the same code everywhere and having it scattered throughout the source than to use some metaprogramming to make a useful (and efficient) macro.
Re: (Score:2)
Yes, because it's much more maintainable to keep repeating the same code everywhere and having it scattered throughout the source than to use some metaprogramming to make a useful (and efficient) macro.
Then extract the repeated code into another method. Much more maintainable than a macro.
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
I think an example (I just started learning Ruby a few weeks ago, coming from Perl and C but I'm already in love with it) is when setting 'attr_accessor' in a class definition to automatically create getters and setters if you don't intend on doing anything fancy with regards to an attribute but don't want it accessed directly. Also, I think Rails pretty much relies on this as well, as is my understanding, but as I said, I've only had a brief association with the language.
Re:These techniques are horrid for maintainability (Score:4, Informative)
class Product < ActiveRecord::Base
end
Instantiates a class called 'product' which is a subclass of ActiveRecord::Base (AR::Base). As soon as the <i>act</i> of subclassing AR::Base, occurs, AR::Base has code that infers the name of the database table (in this case 'products') as the singular, lower case version of the subclass' name (Product). Then, it reads the table 'products' from the database, and dynamically adds getters and setters for the name, description, and price attributes.
In addition, AR::Base knows how to respond to a lot of methods whose names aren't known until runtime. Product.find_by_name("Table") will internally invoke "SELECT * FROM PRODUCTS WHERE name = 'Table'" and fetch a Product whose name, description, and price are reflected in the output of that SQL query.
Hence, you can do this on the Ruby console:
>> product = Product.find_by_name("Table")
>> puts product.name
"Table"
>> puts product.description
"This is a table (my description was living inside the database)"
>> puts product.price
$4.29
It's greatly simplified, but metaprogramming allows you to construct classes and objects who <i>present</i> behavior based on run time state.
You really have to dig in and use a language like Ruby for a while to see how powerful this is. If you're worried about the lack of maintainability, then write good tests
Re: (Score:2)
Your example doesn't seem like metaprogramming in the typical sence, I don't see anything special about it. But that might be due to excessive exposure to Python.
I suppose you could see any ORM layer as a form of metaprogramming [wikipedia.org] (as you're generating and executing SQL at runtime), but I'd argue that SQL isn't a programming language but rather a database language.
Thus this boo
Re: (Score:2)
Re: (Score:2)
So can you give a example of an extreme case where metaprogramming (i.e. dynamically generating code) has an advantage over just using a good old-fashioned precompiled abstraction? (Does it really only work in extreme cases?)
Meta-programming can help when creating frameworks and platforms for a generalized audience (.ie. Rails WRT developers that want to develop apps following a specific architectural pattern). The variables of generality can be captured in *meta-patterns* (I just puked a little by typing that clique - useful, but still a clique).
Meta-programming should not be used for application-specific code where more traditional approaches should suffice.
In other words, if your team is developing a platform or a framew
Re: (Score:2)
Then extract the repeated code into another method. Much more maintainable than a macro.
But this *is* a case of extracting repeated code into another method already.
Re: (Score:1, Insightful)
God, nothing is more annoying than an opinionated boss that starts sticking his fingers in your code.
Except programmers who leave you with a mess once they're gone or do things in a way that is resistant to future changes, or don't follow your coding guidelines and produce code very different from your other programmers, or, ...... I could go on all day with good, valid reasons why a boss (or someone) should be doing code reviews.
You clearly haven't worked on any major projects or in a real development shop.
Re: (Score:1)
Re: (Score:2)
Boy am I glad I don't work for you. While metaprogramming certainly isn't right for every case, it is literally perfect for some. Best tool for the job, and all.
Re: (Score:1, Interesting)
I'm glad you don't work for me, too.
We hired a Ruby guy once. He was the most immature "professional" I've ever had to deal with. He couldn't take any form of criticism, he was always "right", and couldn't work well with others at all.
Aside from his lack of interpersonal skills, his work was complete shit. Instead of just writing code to get it done, he'd insist on using every design pattern he could. 10-line functions became 50-class "frameworks" using every Ruby trick available.
We will NEVER hire a Ruby f
Re: (Score:1)
Why mention "Ruby" so explicitly? It appears that you just had bad luck hiring a overzealous developer not capable of writing good enough software precisely fit for the problem, with the best tools for the job.
You'll find these guys in every type of language or programming paradigm...
Re: (Score:1)
Right, but *this* book review is about a book about Ruby. So it's probably pretty suitable to talk about Ruby here.
If the book was about LISP then you'd probably see a lot more LISP discussion going on.
Re:These techniques are horrid for maintainability (Score:5, Insightful)
These "metaprogramming" techniques, regardless of whether they're done in Ruby or JavaScript or Lua or some other language, cause nothing but problems when it comes to maintainability.
If done poorly, sure.
Sure, they might help the programmer write the code in slightly less time, but then they make it damn near impossible to debug later on.
Then your debugging tools suck, or the metaprogramming was abused. Banning it isn't like banning goto, it's like banning exception handling. Just because you can abuse it and ignore all errors doesn't mean you should never be able to intercept an exception.
Errors are missed because they only happen in obscure cases at runtime,
Can you give an example of such an "obscure" case?
I can see errors being missed because they only happen at runtime, but guess what? Them's the breaks. If you don't like it, you need to stop using Ruby or JavaScript or Lua, and stick to languages like Java, and make sure you always used checked exceptions, and you still won't catch all of them.
Runtime errors happen. That's what unit tests are for.
Even working code becomes unnecessarily complex,
Metaprogramming can make code much shorter, more readable, and more maintainable. If there's some additional complexity at runtime, so be it.
When I catch my developers using these techniques, we have a nice little chat about writing maintainable code, and then their code gets reworked.
If I was working for you (and I'm glad I'm not), I'd look forward to educating you on maintainability.
Let's look at an example: attr_accessor. It wouldn't be Ruby without it. You probably allow it, and it probably makes sense to you to allow it. It's also an example of metaprogramming -- while it's built into the language, and probably hand-tweaked in C for speed, it really makes much more sense once you understand that logically, attr_accessor itself could have been written using define_method.
How about another example: Any decent ORM. Either it's going to use metaprogramming to define your schema (like DataMapper does with 'property'), or it's going to use metaprogramming to expose your existing schema (like Rails does by reading your database). Tell me that's not more "maintainable" than hundreds of lines of XML config files.
Or I'll use a real-world example from the appengine-jruby project:
And in actual code:
That defines a method 'parent_id' which returns the current id of the 'parent' of the current record (an Appengine-specific concept), and a method 'parent' which returns the actual entity of the parent. But notice I passed the symbol :parent explicitly -- I could just as easily have passed something else. (Why would I want to? Because maybe I need a parent method for some other reason, but I don't want to lose this functionality.)
Metaprogramming techniques can be abused. So can anything. Goto is harmful, but sometimes it's useful to be able to return a value from the middle of several nested loops without having to terminate each explicitly. Perl can look like line noise, and while it won't ever really be beautiful, you can write maintainable, readable Perl. You can write COBOL in any language.
So yes, it can be abused, but it's also an extremely powerful technique, and you are crippling your programmers and taking a hit on both productivity and maintainability by banning it.
Programmer trust and empowerment (Score:2)
you are crippling your programmers and taking a hit on both productivity and maintainability by banning it.
I think it'd be a bit off-putting too. You're hired for a certain expertise, then you have that expertise overridden for arguably factually incorrect reasons.
I recently read an article about why video games are addictive (http://www.cracked.com/article_18461_5-creepy-ways-video-games-are-trying-to-get-you-addicted_p2.html); short story, they fill a void that would be much better filled by our jobs, if our jobs gave us (1) autonomy; (2) complexity and (3) feedback. It sounds like a good idea to not strip a
Re: (Score:2)
That might help motivation... I'm not sure it would help actual productivity.
For example, I agree that people shouldn't micromanage programmers, and should examine the output based on how effective, readable, maintainable it is, not based on how well it conforms to the way things have been done in the past. On the other hand, coding standards are there for a reason -- not everything needs to be unit tested, but if you've got a new guy who just doesn't like writing tests, maybe even has some philosophical ob
Re: (Score:2)
I'd say similar things about complexity.
I realize I have been unclear: the quote I gave was said (IIRC) by a psychologist, and psychologists talk weird.
In this case, the psychologese word "complex" translates (I think) into the enginereese phrase "non-trivial". As in the opposite of assembly line work, or data entry, or of "write the exact same program again". Programming is always complex/nontrivial---when done with a bare minimum of good architecture tools and people---because you never do the same thing twice.
Whoops. (Score:2)
Tell me that's not more "maintainable" than hundreds of lines of XML config files.
Now that I think about it, those hundreds of lines of XML config files are going to have to be interpreted by something to turn them into method calls -- so again, it's going to result in metaprogramming, unless you define your schema again by repeating all those methods and properties inside your model source as method and property definitions.
Re: (Score:2)
Sure, they might help the programmer write the code in slightly less time, but then they make it damn near impossible to debug later on. Errors are missed because they only happen in obscure cases at runtime, but would have otherwise been caught when using less-dynamic techniques. Even working code becomes unnecessarily complex, and really can only be understood by stepping through it, line by line, using a debugger.
I guess that when you're working with shitheads who don't know the limits of their competency, you're screwed anyway. No matter what language is involved, they always creep up. I once noted an apparently incompetent programmer - that is incompetent in general as a programmer - who, despite this fact, never forgot to remark that he "absolutely loves C++ templates and tries to do anything with them". You can imagine the results. Java incompetents will probably abuse threads. Good programmers know that there a
Re: (Score:2)
Re: (Score:2)
The summary mentions dynamic programming; but this book contains nothing about dynamic programming. (A particular method suitable to problems with optimal substructure that can be used in a subset of cases where recursion can be used and typically generates results very quickly.)
Yes, "calling code dynamically" is not the classic dynamic programming approach: Think of Pascal's triangle [wikipedia.org], each field is the sum of it's two predecessor in the previous row. You could calculate such a field by calling a recursive function, as parent suggests, but that is very inefficient: Consider the first two calls, to the top-left and top-right. These then do another call, and they overlap (rhombus-like): The top-right of the left with the top-left of the right. Here you could re-use the result if you
Re: (Score:3, Insightful)
The author, who I've seen speak, instead writes about "metaprogramming" which in my personal opinion is a silly catch phrase to sell talks and books when actually he's just talking about using some of the advanced functionality present in Ruby (and also JavaScript) to do things that would be done with macros or can't be done at all in traditional object oriented and procedural languages.
"Metaprogramming" [wikipedia.org] is an old term with a well-established definition, and if simplified to C/C++ audience, that definition would by and large look like "things that are done with macros". So I'm not sure what your problem is. So far as I can see, he is using the term correctly.
Re: (Score:2, Informative)
"dynamic programming" is an overloaded term in the English language. All natural languages have many such terms. Sometimes the meanings are related, sometimes they are completely different. When you have learned a meaning of a term, do not assume that is the sole correct meaning. You risk sounding like a pedant or a fool as a result.
Re: (Score:2)
The 'programming' in dynamic programming does not refer to writing computer programs, it is a branch of mathematics that grew out of the original convex optimization problems. Dantzig was a military 'programmer' in the 40s, the simplex algorithm was developed as a solution to problems that could be posed as a linear objective function with linear constraints. Programming in this sense was a word used by the military to describe how operations would be organised. Dynamic programming is an extension of linear
know your audience (Score:3, Funny)
These are some carefully-chosen words. Ruby is evolving faster than any other language, it seems. You blink your eyes and the XML parser you were using is out-of-favor; everyone has switched to the new one which really is much improved. This can be frustrating in that you must work to keep up with the Ruby world, but all these changes really to seem to be bringing the best of the best ideas to the surface.
Combine this rapid change with Ruby's metaprogramming ability and you see a programming language ecosystem in which evolution is sure to favor that little OO language from Japan...
Re: (Score:2)
While I can't speak to Rails (never used it) or to dog penises, I can say that the newest version of Ruby (1.9) is much faster than the previous versions. Its performance is similar to that of python or perl, and it outperforms these similar languages in some benchmarks. It was the slowest of the mainstream dynamic languages, but that is no longer the case.
Re: (Score:2)
And to some degree, while Rails is the poster child for the power of Ruby it's also an albatross around its neck. It sucks in that regard and I love Ruby.
Re: (Score:1, Informative)
Its performance is similar to that of python or perl, and it outperforms these similar languages in some benchmarks.
I have put the key word of your quote, benchmarks, in bold.
Whatever benchmarks you've seen, they're probably useless. They don't apply to the real world even in the slightest.
We had to endure the same crap with Java years back. Java advocates would bring out some microbenchmarks showing "huge" performance wins over C and C++. Then we'd deploy some real world Java applications, and they'd be as slow as molasses, and require significant hardware upgrades just to run sort of shitty, rather than full-out comple
Re: (Score:2)
Perhaps you didn't read what I wrote, Mr. Coward. The performance of Ruby 1.9 is what is improved. I am not referring to JRuby, or Rails, or Java, or whatever else you imagined. I really was talking about the latest version of Ruby, the programming language.
Reading comprehension is important.
Re: (Score:2)
Perhaps you didn't read what I wrote, Mr. Coward. The performance of Ruby 1.9 is what is improved. I am not referring to JRuby, or Rails, or Java, or whatever else you imagined. I really was talking about the latest version of Ruby, the programming language.
Reading comprehension is important.
Dude, you forgot that this is /. - we don't need reading comprehension, we have straw man frameworks and patterns and meta-patterns for that!!
Re: (Score:1)
That's easy. Put it next to your penis. Everyone looks like Mandingo in comparison to you.
The ecosystem is, not the language. (Score:2)
Ruby's ecosystem evolves very quickly, sure, but the underlying language doesn't. Ruby written 10 years ago isn't significantly different to that written now. It's the libraries that are being used that have changed, but Perl has become susceptible to that in the last few years too (consider Perl5i and all the Perl 6-isms that are entering Perl 5).
FYI (Score:2)
Pragprog has an AWESOME book coming out that I can't wait to see reviewed called "SQL Antipatterns". Check out the sample chapter on selecting a random row from the database. Freaking brilliant stuff.
Kaiser Chiefs edition (Score:2)
Smalltalk and LISP for the History Major (Score:3, Insightful)
I develop in Ruby more than I'd like now and here's what I've seen as a past and present programmer who's used Java, C#, PHP, Perl, Smalltalk, LISP, C++, C, Python, Lua, and Visual Basic amongst others on real projects. Generally, I prefer Ruby to most languages, but only because it reminds me of other languages I'd yet still rather work with instead of Ruby ironically.
It's good to see Ruby improve and gain popularity, but like so many other languages lately (C#, Java, etc.), it seems to want to imitate Smalltalk poorly. Rather I'd like to see Ruby library authors, language devs, and framework zealots pay a little more attention to what is already out there. It reminds me of high school when you hang out with that friend who thinks whenever they discover something for the first time, they must have invented it. Ruby on Rails unfortunately gives the language a lot of bad press and needs to turn down the idiot volume.
Ruby also seems to have some diarrhea of the programming language where it wants to mix paradigms from so many other languages. It is like the kid who can't make up its mind. Even when it tries to emulate, it does it poorly, for example with hashes as hacks on named parameters in Obj C and Smalltalk (and .NET 4 now). This leads to wildly inconsistent libraries, methodologies, etc. Are you Perl? Are you Python? Are you CL or Haskell? I love a lot of things from all the languages I work with, but at some point you need focus, direction, and a firm point of view. This is one reason I love Smalltalk and Common Lisp. The two are wildly different in many ways, but share a strong stance of what is acceptable and useful in the language. In other words, these languages are well designed and have a good crap filter.
Ruby comes off amateurish at best in comparison and makes me feel like I'm working with the new web 3.0 PHP crowd. It's really sad because I love a good language or two, but it's just dumb to try to accomplish such lofty tasks without proper knowledge, leadership, and vision. When you think about it, you have to be kind of an asshole to want to create a new language with all that we have out there. It'd be one thing if it was so radically different as that would represent revolution, but Ruby is so derivative that I often wonder what value added. I tell myself when people do something like this, it must be curiosity + the inner nerd, but that still does not make it ok in my mind. What I wouldn't give if those same people would learn to actually understand and grasp more established languages in Smalltalk and Lisp, or hell even C++. It's not that I fear change, it's just that there's something to be said for experience and well tested languages that have gone through the growing pains already for better or worse. If there was something truly different, that made even functional programming seem trite, then I'd definitely hop on it to learn if nothing else, but Ruby isn't like that.
Finally, I have a problem in the fact that Ruby is not defined in itself. There's a lot of discussion about this if you google so I won't go into it, but historically, strong languages are able to do this because the internal mechanisms are fast enough and adequately expressive to allow for this. It is definitely a strength of a language if it can be built from the ground up in itself due to elegant design. Smalltalk is probably the best example of this, but owes a lot to earlier effort. Why can't Ruby do the same (too late)?
Generally, I am rather happy people are discovering Ruby. It allows me to keep certain languages like Lisp and Smalltalk largely my secret. While people build glorified Microsoft Access apps and then later are let down by scalability, performance, inconsistencies, lack of proper internationalization support, deployment tools, stability, etc., I'm happily being 10x more productive in my languages of choice. Unfortunately the world is a cruel place and employers love jumping on the bandwagon. I had the pleasure of seeing this with Java, where everyone thought
Re: (Score:1)
Very true. Smalltalk is a better Ruby than Ruby.. Ruby is still clunky by comparison.
What we need is to create a new language called.. hmm.. Diamond.. that works like this:
object.message
(instead of ST's: object message)
then you can pass parameters like so:
object.message(key1:value, key2:value)
(instead of ST's: object key1:value key2:value)
etc..
Ie.. just redefine the syntax so nobody can tell that its just ST (because people fear ST).
The problem w/ST was that it was ahead of its time. In some respects it is
Re: (Score:2)
then you can pass parameters like so:
object.message(key1:value, key2:value)
This exists already - it is called Python.
Smalltalk never caught on largely because of fragmentation in its various implemented versions, and because it's not file-based. Rather, you modify an image, which is too weird and unwieldy for most people.
Re: (Score:2)
then you can pass parameters like so:
object.message(key1:value, key2:value)
This exists already - it is called Python.
And Ada.
Re: (Score:1)
-1 Troll
Writing a wall of text doesn't
Re: (Score:1, Interesting)
Care to elaborate? I don't even understand what your comment means.
I use Ruby every single day. I can't think of another language that for instance forces me to write C extensions to makeup for broken or slow parts of the language. I can't think of a language used at this level that can't support internationalization properly in this day and age. It's threading model is to put it lightly, abysmal. There are no great editors or deployment tools. The language itself cannot even fully support any sort of intel
Re: (Score:1)
Re: (Score:2)
You make it sound like that's a bad thing.
I prefer multi-paradigm languages because they let me pick the paradigm that best suits the problem.
Re: (Score:1, Interesting)
Ruby wasn't intended to be an "enterprise ready" language or anything like taking over the world and become popular whatsoever (the Rails guys are solely responsible for Ruby notoriety). Ruby is about the fun in programming, a hobby. Ruby supports all of the programming paradigms it can because it makes it more fun, nothing more, nothing less. You can write extremely perl-ish code in Ruby, you can write purely procedural code too even if the underlying mechanism is OO, you can write Smalltalk-ish code using
Re: (Score:3, Insightful)
Ruby has its (serious) faults, but the multi-paradigm nature of it is not one of them. It's probably the main reason I like the language. Yes, it's not perfect in any given programming style, but the mix of styles is a huge convenience. It's nice to be able to use LISP-like features at times, but still be able to bank out quick, traditional imperative-style code when it's appropriate.
This isn't to say they shouldn't take more from Smalltalk and LISP. Those rough edges are just slightly bad enough to bet in
Most invisibly used language: lisp? (Score:2)
What's particularly nice about Ruby, over the theoretically nicer LISP/Smalltalk/etc, is that Ruby is actually used fairly often...
Every move-to-column you make
Every gdb-point you break
Every file you save
Every font-lock-keyword you say
I'll be ru-u-unning you
From the Song of Emacs
Re: (Score:2)
As someone who is not an experienced programmer in all those languages, merely someone who has dabbled in a handful of them and read about programming much more than he's actually done it... Well, in the abstract, your argument is enticing, convincing even. However there is one glaring counterargument which stands out to even a peon like me, which you have apparently not addressed. It's this:
When you think about it, you have to be kind of an asshole to want to create a new language with all that we have out there. It'd be one thing if it was so radically different as that would represent revolution, but Ruby is so derivative that I often wonder what value added.
If Smalltalk Already Did It (Better)®, and Smalltalk has been around for x decades, then how come Ruby has come