Ruby Weekly is a weekly newsletter covering the latest Ruby and Rails news.

By Peter Cooper / November 2, 2006

Fdcirculation
Burnalytics is a new library just released by Alex MacCaw (the developer also behind the popular Juggernaut plugin for Rails) that makes it easy to retrieve statistics from both FeedBurner and Google Analytics. As well as making it easy to retrieve statistics from these two sources, it also makes it a one line operation to produce graphs from the data retrieved as demonstrated by the screenshot above. Read More

By Peter Cooper / November 2, 2006

Ruby genius Mauricio Fernandez has been playing with an attempt at processing Prolog using Ruby found on a Japanese coding site and has come up with tiny_prolog.rb. Read More

require ‘tiny_prolog_ext’

# rules
# read as “X and Y are siblings if Z is the parent of both”
sibling[:X,:Y]

By Peter Cooper / November 2, 2006

Seymore

Seymore is a new Rails-based content management system developed by Thomas Mango and released to the public in the last couple of days. Six screencasts are provided demonstrating how the system looks and operates. Version 0.1 is available now as a complete build in .tar.gz and .zip formats and a more up to date trunk copy is available via SVN from Seymore’s Google Code repository. Read More

By Peter Cooper / November 1, 2006

Rubyjobs
I don’t think the Ruby Jobs site at RubyNow gets enough link love from the community, and I want to put that right. If you haven’t been there for a while, you’ll be surprised. In just the last two weeks there are 30 new Ruby and Rails jobs available. That’s even more than on the 37signals Jobs Board. Even better, if you’re an employer you can post to the RubyNow jobs board for free, so check it out. Read More

By Peter Cooper / November 1, 2006

Jason Garber has got in touch about his new Rails plugin, form_test_helper, that makes testing forms easier than before. As the plugin’s official home page has less information than the mail he sent me, I’m reproducing his mail in full as it’s the useful reference so far: Read More

With my form_test_helper Rails plugin, your functional and integration
tests can work more like the browser. No longer do you need to feed
params to an action:

post :create, :name =’Pickaxe’, :category =1, :out_of_print =0

…and then wait for it to break silently when you change your form but
forget to change the test.

By Peter Cooper / October 30, 2006

Emacsrails

Those of us who primarily develop Rails applications on OS X are mostly familiar with TextMate, a great, powerful and stylish editor that seemingly entices more Rails developers over to the Mac platform every day (judging by the comments on the #rubyonrails IRC channel). However, another option available to all platforms is the GNU Emacs editor, an open source Emacs-based text editor that’s been around since the computer dark ages.

Marshall Vandegrift has put together a compelling screencast of his Emacs setup which sports as many, if not more, features as TextMate, and is just as powerful. He has syntax coloring for Ruby and erb, a project view, and built-in links to tools such as svn and diff. Read More

By Peter Cooper / October 30, 2006

Rubyvisualidentity

The Ruby Visual Identity Team have released a Ruby logo kit for use under a Creative Commons Attribution-ShareAlike license. The kit includes high resolution JPEG and PNG bitmaps, along with PDF, Adobe Illustrator, Xara, and Flash vector format versions. Subject to the Creative Commons license, this logo pack makes it easy to use the official Ruby logo within your own projects and Web sites (perhaps a redesign of Ruby Inside’s logo should be on the cards..) Read More

By Peter Cooper / October 29, 2006

Montage

Corban Brook presents a step-by-step guide to producing ‘great looking collages’ using Ruby and the RMagick graphics library. Rather than be stuck with a dry picture-by-picture view, Brook uses RMagick to great effect to produce a complex, dynamic image that looks as if it were put together by hand. If for nothing else, this is a great look at some reasonably advanced RMagick code and a great way to learn about a few of the more arcane methods it offers. Read More

By Peter Cooper / October 29, 2006

Rubygrammardependencies

Nick Sieger has put together pretty dependency graphs for Ruby, Java, and JavaScript using the YACC definitions for each. If none of this makes sense, at least the pictures are enjoyable, and if you print out the high res copy it’d look great as a wall poster. Read More

By Peter Cooper / October 25, 2006

Rubysearchplugin

Want to get the Google-powered Ruby Search (searches over 40 Ruby sites – blogs, forums, references in one hit) easily accessible in your Firefox browser? Now you can, head over to the Google Ruby Search site and click the link to add the search to your search bar. Read More

By Peter Cooper / October 25, 2006

Googlerubysearch

Hot on the heels of the last post comes a new feature to Ruby Inside.. a Ruby and Rails search engine powered by Google. It’s on the front page here at Ruby Inside (link for those reading via RSS) and lets you search a bumper collection of Ruby and Rails sites in one go.
If you search for ‘Integer’ you get the Ruby class references, rather than the Java and Wikipedia links you get with Google.com, and you can use it as a quick, reliable way to pin down the Ruby information you need. So far there are 23 sites in the search engine, including the main reference sites, the Rails forum, and several key weblogs, but I’m adding more sites over time. Read More

By Peter Cooper / October 25, 2006

Rubysearch-1
Ruby Search, a project by Simon Parker, is a special Web search tool that looks through the Rails class index, Rails methods, Ruby standard libraries, and Programming Ruby and presents the results in a simple sidebar to be viewed in a frame on the right. It seems to be a bit patchy from my tests, but it’s still a cool tool. (Found via ozmm) Read More

By Peter Cooper / October 22, 2006

Freckle
The winners of the Rails Day have been announced. For those who haven’t heard about it before, Rails Day is an annual contest in which hundreds of developers take 24 hours to develop an application.

Evan Weaver has put together a great run-through of the different winners along with what each one is and how it looks. Read More

By Peter Cooper / October 22, 2006

Merb is a micro-framework (developed by Ezra Zygmuntowicz) that ties in with Mongrel and erb and provides basic controller and view templating. It’s an ideal way to put together quick and simple Web applications with Ruby that don’t rely on any of the fancier features offered by Rails. It does have support for ActiveRecord, however. Merb allows you to create small systems that produce dynamic requests and can interact with databases but without the significant weight of the Rails framework. Where Ruby on Rails is a Big Mac, Merb is a McNugget. Read More

Recently Popular Posts