The Rambling Trie has reached its 0.4.2 version. This one includes the before mentioned changes for the trie instance to behave as an Enumerable
.
Tagged 'ruby'
-
Version 0.4.2 of the Rambling Trie has been released!
-
New homepage for Rambling Trie
As done with the jQuery Rambling Slider previously on this week, and as I promised on that post as well, the Rambling Trie now has its own homepage on ramblinglabs.com! Here's the link:
Continue Reading » -
Pygmentizing your Rails app hosted on Heroku
Last week, I watched Ryan Bates' Syntax Highlighting RailsCast and wanted to apply what I had just learned right away, using pygments.
Continue Reading » -
The rambling-slider-rails v0.1.0 has been released!
Version 0.1.0 of the
Continue Reading »rambling-slider-rails
gem is here!
And it includes a major bug fix. -
Rambling Trie 0.4.1 is out!
Version 0.4.1 of the Rambling Trie is here. It has some minor performance improvements over previous versions, changes in file/directoy structure, as well as a new API entry point, other API methods and more documentation.
Continue Reading » -
Rails - Custom 404 and 500 pages and the exception_notification gem
As I explained before on the Rails 3.1 - Adding custom 404 and 500 error pages post, sometimes you might want to have a custom way to handle your not found and internal server errors. In that case we wanted to show the error with a custom template.
Continue Reading » -
Introducing rambling-slider-rails: Easily include the jQuery Rambling Slider on your rails app
About three weeks ago, I had to use the jQuery Rambling Slider together with the Rails asset pipeline...
Continue Reading »
It was a headache and a total mess... Having to change all the references to the images on the CSS file, as well as the themes was not as smooth as I would like that to be. -
Rambling Trie 0.3.3 has been released!
The new version of the
Continue Reading »rambling-trie
gem is out!
As I said on my previous post, therambling-trie
is an implementation of the Trie data structure in Ruby. -
Rambling Trie: A custom Trie data structure implementation in Ruby
We're proud to announce that our first gem is here!
Continue Reading » -
Migrating your blog posts to Markdown with Upmark and Nokogiri
As I said in my last post, for our new site, we changed our blog engine from WordPress to the Postmarkdown gem. At the end of that post, I mentioned that we had to migrate the old posts from WordPress to Markdown.
Continue Reading » -
Writing your blog posts in Markdown with Postmarkdown
Another thing we added to our new site, uploaded back at the end of December, was the ability to write our blog posts in Markdown, which is a text-to-html tool that allows you to write formatted text without actually having to write all the corresponding HTML. Markdown is used for the project wiki pages on GitHub, and can also be used for the project's readme file.
Continue Reading » -
Rails 3.1: Treating your '.swf' files as assets
This week, I've been deploying one of my current Ruby on Rails projects to WebFaction.
Continue Reading »
For what we found, it's definitely one of the best options out there for shared hosting with Python and Ruby. -
Replacing ERb with HAML on your Rails application generators
As you may know, we've been using HAML lately for our views.
Continue Reading » -
Rails 3.1 - Adding custom 404 and 500 error pages
As I said when announcing the Rambling Labs new site, we've been learning a lot of stuff while building it.
Continue Reading » -
Generating your site menu with the 'simple-navigation' gem
One of the cool things I learned while building our new site was how to generate your site navigation menu without having to do the highlighting logic yourself.
Continue Reading » -
Using RVM within a cron job
Long time no post! I've been really busy these days with some projects. Yet, here I am again, so here it goes.
Continue Reading » -
Installing the capybara-webkit gem
To install the capybara-webkit gem, you need to have the libqt4-dev installed. So run:
Continue Reading » -
Rails 3.1 - Translating routes
Today, I was wondering if there would be a way to add translated routes automatically in Ruby on Rails. This is for a project I'm currently working on, whose users speak mostly spanish, so I want to make them happy with urls like "/contacto", "/quienes-somos" and "/trabajos/1" instead of "/contact", "/about-us", and "jobs/1".
Continue Reading » -
The nokogiri gem and the "libxslt is missing" error
I ran into this issue today. But this one's easy. Just run the following command and install the gem again:
Continue Reading » -
Rails 3.1 "rails console" fails with "no such file to load -- readline"
Yesterday, I was trying to run the
Continue Reading »rails console
command on Ubuntu with ruby 1.9.2 and rails 3.1, without any success. I was getting ano such file to load -- readline
error. This kind of error was sort of familiar for me (I had the commonno such file to load -- zlib
and the not so commonno such file to load -- openssl
a while ago). So this was probably another package that I was missing.