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.

Prawn 0.11.1 released!

After over a year of developing the PDF generation library Prawn without doing an official release, the core team has finally replaced the legacy Prawn 0.8.4 gem with the 0.11.1 codebase. This brings the team very close to 1.0, and fixes many issues and adds many new features that Prawn users have been asking for since the start of the project. See the release notes, check out the awesome self-documenting manual, and kick the tires, because this release is one of our last stops on the path to 1.0! [more inside]

Gibberish - Easier Ruby Encryption

The top result on Google for “Ruby Encryption” is a DZone snippet, and it’s incorrectly implemented. I’m trying to fix this with a well documented, tested, and easy to use library based on OpenSSL. Check it out on GitHub

Hey Mark , I think you do not search hard enough, check this out https://…
Hey nicetry, I think EzCrypto is a great library, but my design consideratio…
And the fact of the matter is, two good libraries make it even more likely that…

IndexTank Hosted Search API Contest is Live!

IndexTank and Factual have teamed up for an awesome contest. The theme is: local businesses! By hacking up an application that uses both IndexTank real-time custom search API and Factual’s dataset of 14M US businesses. You could win an iPad 2 and IndexTank is Ruby / Rails ready to make it super easy to get up and going and a native add-on in Heroku. Come check out complete details: http://bit.ly/rubyflow0404

RSpec Outlines

Ever wanted cucumber-style scenario outlines in RSpec? Now you can with RSpec Outlines.

I don’t know about others but to me that isn’t pretty at all. I’ve once thought…
The specific example of testing all parameter combinations is a bad one in retr…
I think it is pretty well accepted from the cucumber and a pretty neat addition…

Rails Misapprehensions: The Hardest Thing about REST is Working with Representations!

Working with resource representations is the hardest part about REST. This blog post discusses how Rails handles de-/serialization of representations, the limitations of the Rails way and the problems when cluttering transformation rules. It then introduces the new roar gem which tries to solve all that with representers and more.

You mean this blog post. …
http://nicksda.apotomo.de/2011/04/rails-misapprehensions-the-hardest-thing-abou…
So much for a uniquely identifiable resource…
Sorry, fixed ;-)

Spot invalid Active Record objects with active_sanity (and sleep better at night!)

We just released a little gem that logs (and stores) all the invalid Active Record objects your database contains. As you add / update ActiveRecord model validations, existing records may become invalid. An invalid record can break migrations, raise weird bugs in production or just prevent a customer from ordering stuff on your webstore. Just add gem 'active_sanity' to your Gemfile, run rake db:check_sanity and go fix your records! More info on the blog post introducing active_sanity or the active_sanity Github project.

Great idea Phillipe, I’ve never know the best way to handle this. I used to jus…
Loading older posts