Robert Dempsey of non-profit Rails advocacy group, Rails For All, writes in to remind everyone about the acts_as_conference Rails conference taking place in Florida in February 2008 and to let us know that registration is now open. Tickets cost $100 (plus $2.50 booking fee). Obie Fernandez and Dan Benjamin are the keynoter speakers, but there are many others. Too many to name individually here, although Charles Nutter (JRuby), Ezra Zygmuntowicz (Merb), and Evan Phoenix (Rubinius) are particular standouts. Anyway, if you fancy getting some winter sun while doing the Rails schmooze, hit it up. It doesn’t sound like you’re going to be bored at this one. Read More
Ryan Davis starting off the RejectConf proceedings (License: CC ASa)
Just learned via Michael Riley on Twitter that the videos from the 4th RejectConf held alongside RubyConf 2007 are available to watch online. There are plenty of good presentations to watch, such as Dr. Nic Williams’ introduction to Rubigen and Magic Controller, Tom Preston talking about GOD, and Eric Mills on rubedo – a Ruby powered jukebox. There are 20 different presentations you can watch (including Ryan Davis’ introduction) so there’s bound to be something you’ll find interesting. Being RubyConf’s RejectConf, the presentations are nearly all about Ruby-specific topics, rather than Rails. Read More
Pro Active Record “Databases with Ruby and Rails” (Amazon) is a new book by Kevin Marshall, Chad Pytel, and Jon Yurek, published by Apress. The book goes deep into the ActiveRecord ORM library, a key part of Rails that makes it easy to deal with information stored within a database in an object oriented way. There are already several reviews on Amazon.com, although Josh Susser has written something more indepth.
To celebrate the launch of the book, the guys over at ThoughtBot (where both Chad and Jon work) are running a contest with three prizes of signed copies of Pro Active Record. Read More
Interview with Evan Phoenix about Rubinius
Mike Moore, of the Rubiverse Podcast, has interviewed legendary Ruby developer Evan Phoenix about the Rubinius Ruby implementation project. If you like your Ruby talk deep down, dirty, and packed full of technical details, this is well worth a listen. The interview goes right into the inspiration behind Rubinius, the development process, and stories of discoveries made so far.
Make A Code Pasting Site In 15 Minutes With Sinatra & DataMapper
Nick Plante has written a great tutorial demonstrating how to build a code pasting site (like Pastie) in a very short period of time using Sinatra, a new lightweight Ruby Web framework, and DataMapper, a compelling new ActiveRecord alternative (which is going to be featured a lot more on Ruby Inside shortly). Read More
David Mullet has put together a brief, but well formed, tutorial on getting started with the wxRuby GUI toolkit to develop graphical Windows applications using Ruby. Read More
Rails developer Peter Marklund recently presented a five day “Rails 101″ course in Sweden, and used an epic 341 slide presentation to work his way through all of the topics. Inspired by the vast number of Rails videos, screencasts, and educational resources coming online lately, Peter decided to make his slideshow available to all (direct links: PDF or Slideshare). Topics include everything you’d expect from a comprehensive Rails course (installation, Ruby, migrations, ActiveRecord, forms, views, Rails 2.0, deployment, etc). Read More
Martin Sadler of WorkingWithRails.com just pointed me towards Heroku, an exciting new development in the Rails world. Heroku is an online environment where you can develop and host Rails applications.. all from the browser. This is pretty exciting stuff and, on paper, makes rolling out, tweaking, and playing with Rails applications a snap. Rather than blather on about how this could become a game-changer in the Web applications industry, instead I’ll point you to Heroku’s own excellent set of screencasts and feature tours.
Adam Wiggins, one of the three partners behind Heroku, has some more “from the trenches” detail in this post on his personal blog. Read More
Eivind Uggedal has written in with a note about a new blog system he’s built using the lightweight Sinatra framework. It’s about 100 lines long including the inline templates! An example of the finished software powers Eivind’s own blog. Sinatra is looking to be an absolutely excellent mini-framework for running up basic non-MVC applications, and you can learn more about it here. Read More
Will Larson has put together a great “from start to finish” tutorial on building a graphical application on OS X using Shoes, the cross platform GUI library by whytheluckystiff. It goes right from explaining what Shoes actually is, through to its installation, some basic examples, and then to building a basic graphics-focused application. Read More
JRuby: An Introduction is a fresh new article by Chris Duckett that presents a practical, code-driven introduction to JRuby, a Java implementation of Ruby. It’s the perfect introduction for people who, perhaps, have an idea of what JRuby is, but who haven’t yet tried out any of the Java connectivity. The first page looks at interacting with basic Java libraries / classes, with the second moving on to building a basic Swing-powered GUI app using Java APIs from Ruby code.
Added: There’s also a screencast by Brian Chapados called Intro to JRuby that’s worth watching for a more practical, real-time look. Read More
RDDB is a Ruby document-oriented database system inspired by CouchDB and developed by Anthony Eden. If you’re familiar with CouchDB, the whole system should make sense from the start, but if not, read on. You can create a database and insert documents in a simple enough way:
# First create an database object
database = Rddb::Database.new
# Put some documents into it
database << {:name =’John’, :income =35000}
database << {:name =’Bob’, :income =40000}
To “query” the database, you define a “view” using a Ruby block, as such:
# Create a view that will return the names
database.create_view(‘names’) do |document, args|
document.name
end
# The result of querying will return an array of names
assert_equal ['John','Bob','Jim'], database.query(‘names’)
Views are defined as Ruby blocks that are then used to select the documents and the attributes in the documents that you wish to retrieve. Read More
Thomas Enebo of the JRuby team has announced the release of the first beta of JRuby 1.1. This is a significant release, focusing heavily on performance increases. The performance increases yielded so far are so significant that in most like-for-like tests, JRuby beats the regular Ruby interpreter (a.k.a. MRI) JRuby 1.1. On Rails-focused tests, JRuby also wins.. making JRuby the fastest way to run Rails applications at present. Charles Nutter talks about the improvements, along with a number of other interesting JRuby-related topics, in his latest blog post – a must read for Ruby implementation nuts. Read More
As long time readers will know, Ruby Inside has its own jobs board at jobs.rubyinside.com. It doesn’t just have jobs posted only by Ruby Inside readers, but also jobs scraped from all over the Web with many Ruby and Rails related jobs being picked up every day (e.g. how does being a Ruby Engineer in Los Angeles take your fancy?).
Only two jobs were posted by Ruby Inside readers in October, but deserve special attention:
Ruby / MySQL Developers – Irvine, CA
WEGCash, an adult affiliate network company, are looking for some talented Ruby-focused Web developers to join their team in Irvine, California. Read More
Thanks to an article called “Top Programming Books on Google Book Search“, I’ve discovered that many of the pages of my book, Beginning Ruby (available also in e-book format here), are available here on Google Book Search. Most of Chapter 3 is there, along with chunks of every other chapter, including quite a bit of Chapter 16, a reference of “Useful Ruby Libraries and Gems”.
While I have your attention and while I’m officially posting about the book, so far it has 9 reviews on Amazon, 8 at 5 star, and 1 at 4 star, and they are well worth a read if you’re wondering whether the book is for you or not. Read More
Thanks to Jan Wedekind for letting me know that the Ruby Association, a formal Ruby promotion group chaired by Matz himself, has chosen a winner in the Ruby Logo Contest. The winning logo is by Tom Schaub and licensed under the Creative Commons Attribution-ShareAlike license.
I’d be really interested to hear what everyone thinks about it in the comments on this post. Read More