Good news everyone! Rails version 3.2.7 has been released. This version contains an important security fix, please upgrade immediately. The security fix impacts people using digest authentication from Action Pack. You can read more about the problem here . Thank you to Charlie Somervi...
Defect #2071 : Reordering priority-enumerations breaks alternate-theme's issue-colouring Defect #2190 : Month names not translated to german Defect #8978 : LDAP timeout if an LDAP auth provider is unreachable Defect #10928 : Documentation about generating a plugin is not up-to-date De...
by Alex Chaffee on RubyGems Warningitis Outbreak by Sean Tan on RubyGems Warningitis Outbreak by Tony Amoyal on Upgrading your Rakefile from RSpec 1.3 to RSpec 2 by Alex Chaffee on Where, oh where has my gem server gone? by Luis Lavena on Where, oh where has my gem server gone? by Ros...
Thursday, July 26, 2012 at 5:23AM Having my schedule disrupted makes me grumpy. A personal failing, I'm sure. csv_shaper - DSL for creating CSV output in Rails, including support for CSV views. Hiss - OS X app to forward Growl notifications to Mountain Lion's Notification Center. In b...
When it comes to app match ups no-one does it cleaner than Zapier . The way I see it, they're the bread that surrounds a PB&J sandwich. Sure the good stuff is in the middle, but you wouldn't be able to enjoy it without getting your fingers dirty if it weren't for the bread. As Zapier ...
A tiny EventBrite API client. (http://developer.eventbrite.com)
Las imágenes de avatar juegan cada vez un papel más importante en la web, sobre todo en las aplicaciones sociales. Si queremos añadir imágenes de avatar a una aplicación escrita por nosotros deberíamos considerar el uso de Gravatar , que proporciona una forma muy cómoda de hacerlo. Lo...
In this release, we have added the notion of ‘project’ settings that are inherited by every Padrino application within the project. This can be used to set any properties but is particularly useful for sharing sessions across your apps. These project-wide settings are intended to live...
На проекте Sonru вместо трансляции медиа-контента через стриминговый протокол RTMP нам пришлось отказаться от его использования в пользу HTTPS, причина банальна - корпоративные политики безопасности без разбора режут не-HTTP трафик. Для того, чтобы реализовать эту задачу мы решили соб...
I started with Rails because I wanted to rewrite my PHP beast. Instead I had a zillion cooler ideas and then got busy working for hire. Enterprisey! Now I’m back in the game and coming out with Grabb.it Above was written in ~2006, leaving b/c it’s awesome. 2012 I’m one of the co-found...
If we run the specs now we’ll have two passing specs, so it looks like our code works as expected. If we were doing test-driven development we’d start with a failing spec and then write code to make it pass and this is one of the advantages of test-driven development as it ensures tha...
amqp-hermes 1.0.1 Wrapper around ruby-amqp to make pub/sub easier install gem install amqp-hermes Download Documentation Subscribe Stats Authors Hartog C. de Mik 367 total downloads 13 for this version Owners Links Homepage Gemfile gem "amqp-hermes", "~> 1.0.1" Versions 1.0.1 July 26,...
module ActiveSupport module Dependencies mattr_accessor :warnings_on_first_load mattr_accessor :history mattr_accessor :loaded mattr_accessor :mechanism mattr_accessor :load_paths mattr_accessor :load_once_paths mattr_accessor :autoloaded_constants mattr_accessor :explicitly_unloadabl...
module ActiveSupport module Dependencies mattr_accessor :warnings_on_first_load mattr_accessor :history mattr_accessor :loaded mattr_accessor :mechanism mattr_accessor :load_paths mattr_accessor :load_once_paths mattr_accessor :autoloaded_constants mattr_accessor :explicitly_unloadabl...
Here I show off three new features in Rails 3.1 that will help with authentication: easier HTTP Basic, SecurePassword in the database, and forcing SSL.
actually does internally is two separate things. It first creates a dataset representing the query, and then it executes the dataset's SQL code to retrieve the objects. Often, you want to define a dataset at some point, but not execute it till later. You can do this by leaving off the...
After some versions without an upgrade, Rails 2.3 offers some new features for Rails Engines (Rails applications that can be embedded within other applications). First, routing files in engines are automatically loaded and reloaded now, just like your routes.rb file (this also applies...
class ArticlesController < ApplicationController def show_with_respond_to_block @article = Article.find(params[:id]) # If the request sends headers that differs from the options provided to stale?, then # the request is indeed stale and the respond_to block is triggered (and the optio...