RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Submit a post

You can use basic HTML markup (e.g. <a>) or Markdown.
Note that your post may be edited to suit the format of the site.

As you are not logged in, you will be
directed via GitHub to signup or sign in

Post Preview

Note: Only the first pargraph is shown on the front page and overly long paragraphs may be broken up.

Testing rails view helpers

Rails view helpers are easy to overlook in your test suite, but they want your testing love just like your models. I generally use view helpers for one of two reasons: 1.) when I’m trying to output something that’s a bit too hairy to leave in a view or 2.) when I want to DRY up some view code. Both of these reasons warrant testing this code. [more inside]

Ticketmaster: Take Command of your Ticket Tracking and Project Management System(s)

Ticketmaster provides a universal API to ticket tracking and project management systems. Currently supported backends are Pivotal Tracker, Lighthouse, and Unfuddle, with more to come. It also provides a command-line interface and console, to make it easy to integrate with your development workflow, or to migrate between systems. Using a flexible provider plugin architecture, you can easily create support for your own backends. Check it out at http://ticketrb.com

Any planned support for Ditz? http://ditz.rubyforge.org/ …

[Rails plugin] has_many_booleans

has_many_booleans is an ActiveRecord plugin which creates virtual boolean attributes for a model. When the object gets saved, the plugin transforms all attributes into a single integer, using a bitset. So you can easily add new attributes without changing the database structure. - more information -

it may have a problem with lost updates. imagine 2 processes changing different…
Hi epirogov, there is a :lazy => false option, which has the effect that the…
There is a similar project: http://github.com/xing/flag_shih_tzu …
There are another similar project: http://github.com/maiha/acts_as_bits …
Loading older posts