Tom: The ruby source code is hosted on SVN but there's also a GitHub mirror which I find easier to navigate here: https://github.com/ruby/ruby
You can view the changelog entries for a release of ruby, for example here is the changlog entries for 2.1.x https://github.com/ruby/ruby/blob/ruby_2_1/ChangeLog (As you can see a ruby 2.1.9 release is eminent). You can also diff versions of ruby, but the changes are sometimes very large, and C code can be time consuming to read; here is the diff for ruby 2.1.7 -> 2.1.8 https://github.com/ruby/ruby/compare/v2_1_7...v2_1_8 Hope this helps. Cheers Mario On Friday, January 8, 2016 at 10:30:27 AM UTC+11, Tom Hale wrote: > > On 7/01/2016 2:08 PM, Jon Rowe wrote: > > that will work consistently… I’ve never seen `private_class_method def > > self.class_method_name` in the wild I suspect that it only works by > > accident… > > I'm 99% sure that the `private_class_method def self.class_method_name` > style was added in Ruby 2.1 or later. > > On this note, does anyone know where to easily browse through the > changes in the various releases of Ruby? It would make for great > professional development reading. > > -- > Tom > -- You received this message because you are subscribed to the Google Groups "Ruby or Rails Oceania" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/rails-oceania. For more options, visit https://groups.google.com/d/optout.
