multiple_mailers - send emails by different smtp accounts Posted by flyerhzm on March 21, 2012 — 0 comments I just released a gem multiple_mailers , it extends actionmailer to allow one smtp account per mailer class. I also wrote a blog post to explain. Comments Post a Comment Com...
Fast deployment using Capistrano, RVM and more Posted by mpapis on March 21, 2012 — 0 comments I just wrote a new blog post on Fast deployment using Capistrano, RVM and more loaded with all the details needed to bootstrap server in 10 minutes. Comments Post a Comment Comment abili...
Javascript templates using eco. Posted by stjhimy on March 21, 2012 — 0 comments Eco makes coffeescript available on javascript templates, like jst + erb. Rails + Coffee + Eco + JQuery = AWWWW YEAH! . Comments Post a Comment Comment abilities for non registered users are currently...
New Ruby video series on YouTube Posted by mattslay on March 20, 2012 — 0 comments Matt Stopa has begun posting a nice series of videos on YouTube, each one introducing some basic concepts in Ruby. These brief videos show him typing in code in real time while giving explanations and c...
A Unix Shell in Ruby - Pipes Posted by jstorimer on March 20, 2012 — 0 comments I just published the fourth article in a series where I implement a Unix shell in pure Ruby code. This time it covers shell pipelines. Comments Post a Comment Comment abilities for non registered users...
minitest-metadata: annotate tests with metadata (key-value). Posted by wojtekmach on March 19, 2012 — 0 comments https://github.com/wojtekmach/minitest-metadata Comments Post a Comment Comment abilities for non registered users are currently deactivated, pending time to add a prop...
wisepdf – wkhtmltopdf done right Posted by alexandrov on March 18, 2012 — 0 comments After a couple of weeks spent with WickedPDF and PDFKit I understood, that I can make something better. And it is called wisepdf! It works with Rails 2.3 and above, it correctly supports Assets Pipeli...
Decoupling Persistence from your Domain Posted by moonmaster9000 on March 18, 2012 — 0 comments A method for using either inheritance (with naming conventions) or mixins to segregate persistence concerns from your domain models. README / example code on github here . Blog post / comme...
Wiserespond - one more way to make your controllers DRY Posted by alexandrov on March 17, 2012 — 0 comments Just crafted small Gem to make your controllers even more DRYer and extremely easy to understand. Hope it will be useful. https://github.com/igor-alexandrov/wiserespond https://...
Gitara - A Ruby DSL for generating Lilypond guitar tablatures Posted by gsmendoza on March 17, 2012 — 0 comments Gitara is a Ruby DSL for generating Lilypond guitar tablatures. At 0.4.2, it's still a work in progress. But you should now be able to write some decent guitar tablatures w...
Padrino Web Framework 0.10.6: ActiveSupport 3.2, Improved Logger, HTML5 Helpers and bug fixes Posted by nesquena on March 16, 2012 — 0 comments The Padrino team just released 0.10.6 stable which includes ActiveRecord 3.2 support, MiniRecord support, Logging upgrades, performance impro...
Objects on Rails now available to read online Posted by avdi on March 15, 2012 — 0 comments "Objects on Rails", a developer notebook exploring ideas and techniques for applying classic OO thinking to Rails projects, is now available free to read online . Comments Post a Comment Co...
Github.js — Write files to Github right from the browser. Posted by mql on March 15, 2012 — 2 comments I just pushed Version 0.1.2 of Github.js , a higher-level wrapper around the Github API. Intended for the browser. Comments Although a cool library I'm trying to figure out why t...
You got NoSQL in my Postgres! Using Hstore in Rails Posted by schneems on March 14, 2012 — 0 comments Wouldn't it be awesome if we could just save data in a database like a hash? Well now you can, with hstore & Rails . Hstore is a key/value schema-less datastore in Postgres, use it ju...
How to write MiniTest::Spec Expectations Posted by ningja on March 13, 2012 — 0 comments I'm a fan of MiniTest::Spec. It strikes a nice balance between the simplicity of TestUnit and the readable syntax of RSpec. So here's how to write MiniTest::Spec Expectations. Comments Post a ...
Wroclove.rb Links Posted by jim on March 13, 2012 — 0 comments There were some great presentations at wroclove.rb and Michał Kwiatkowski is gathering a list of all the things you missed . Comments Post a Comment Comment abilities for non registered users are currently deactivated,...
Suggestions for content on "rubyonrails.io" Posted by arunagw on March 11, 2012 — 4 comments I just brought the domain "rubyonrails.io" and would like to invite the community to provide me with some suggestions to make the best use of this domain. Comments Domain name looks pretty...
bahia - now with rubinius and jruby support Posted by cldwalker on March 13, 2012 — 0 comments bahia 0.5.0 just came out with rubinius and jruby support. bahia acceptance tests your commandline apps in test frameworks such as rspec, test-unit and minitest. Check it out! Comments P...
CerealEyes v0.0.1 Posted by seejohnrun on March 13, 2012 — 0 comments I just released the first version of a proof of concept serializer / deserializer based on GSON. https://github.com/seejohnrun/cereal_eyes Comments Post a Comment Comment abilities for non registered users are c...
StoreConfigurable For ActiveRecord Posted by MetaSkills on March 13, 2012 — 0 comments StoreConfigurable - A zero-configuration recursive Hash for storing a tree of options in a serialized ActiveRecord column which includes self-aware hooks that delegate dirty/changed state to your co...
I love Ruby because ... Posted by rtdp on March 12, 2012 — 0 comments I really love ruby language, and so do many folks using it. So, this is an attempt to collect resons for that from everybody. Knowing what ticks for others in language, can be a good learning exercise. Check it out ...
usp.ruby Archives for your e-reader Posted by jstorimer on March 12, 2012 — 0 comments usp.ruby is "a text-only mailing list for Unix systems programming in Ruby". The content is written by Eric Wong (author of Unicorn) and is a great resource to learn about Unix programming without d...
A Unix Shell in Ruby - Login Shell and the PATH Posted by jstorimer on March 11, 2012 — 0 comments In continuing my series on implementing a Unix shell in pure Ruby code this article covers everything you need to know about environment variables and the search path. Read it . Comments...
A different approach to Rails mass-assignment security Posted by jordoh on March 10, 2012 — 0 comments Read this blog post for an approach to mass-assignment security that: - Does not rely on the developer remembering to protect their attributes like attr_protected does. - Does not ke...
shell_command v0.2.2 released Posted by robgleeson on March 10, 2012 — 0 comments shell_command tries to provide a better interface for communicating with commands you spawn on the shell. The API is simple and small, and examples are included in the README. Notable features for this r...
BostonRB February 2012 Videos Posted by bcardarella on March 10, 2012 — 0 comments This month we had: Chad Fowler present Measuring & Analyzing Things That Matter When You Have Too Many Things To Keep Track Of Luke Griffiths present How to make your first contribution to open source B...
Ruby's catch/throw, goto's little brother Posted by devalot on March 09, 2012 — 0 comments Pat Shaughnessy showed us how to enable __goto__ for Ruby 1.9, but goto's little brother catch and throw have been there all along. Comments Post a Comment Comment abilities for non register...
with some helpful suggestions from Brook Riggio's blog post on Haml by Default in a New Rails 3.2 App . The RailsApps application templates now include a haml-html5 template offering you a choice of Haml or ERB, with options for a CSS front-end framework such as Twitter Bootstrap (Les...
Posted by dcadenas on March 08, 2012 — 0 comments Rubydeps is a tool that uses graphviz to show a dependency graph of your project classes based on its tests. I think this is more useful than static analysis of the code base because of the high dynamic aspects of the language. The mai...
Global Hack Day #2 is Today! (March 8th) Posted by seacreature on March 08, 2012 — 0 comments Mendicant University is now hosting monthly online hackfests open to all programmers. Today (March 8) we'll be running our second event, from 19:00 - 03:00 UTC. If you have your own project y...