Do not set RAILS_ENV to "development" when using db:test:prepare and related rake tasks. This was causing the truncation of the development database data when using RSpec. In RC2 was fixed again when using config.active_record.schema_format = :sql Rafael Mendonça França Do not conside...
Bullet will notify you of database queries that can potentially be improved through eager loading or counter cache column. A variety of notification alerts are supported.
Good news everyone! Rails version 3.1.8 has been released. This release of Rails contains three important security fixes: CVE-2012-3463 Ruby on Rails Potential XSS Vulnerability in select_tag prompt CVE-2012-3464 Potential XSS Vulnerability in Ruby on Rails CVE-2012-3465 XSS Vulnerabi...
Good news everyone! Rails version 3.0.17 has been released. This release of Rails contains three important security fixes: CVE-2012-3463 Ruby on Rails Potential XSS Vulnerability in select_tag prompt CVE-2012-3464 Potential XSS Vulnerability in Ruby on Rails CVE-2012-3465 XSS Vulnerab...
Here I show how to accomplish zero-downtime deployment using Unicorn. I also cover gotchas when working with migrations and how to put up a maintenance page when you do need to take down the site.
rolify 3.2 is out - Role management library with resource scoping w/ Mongoid support Posted by EppO on August 09, 2012 — 0 comments rolify gem allows you to manage the roles in your app easily and provides the ability to scope the role on a resource instance or class: user.add_role :m...
gem gives you a tool to assemble a Rails application from a collection of recipes. Use it to generate Rails starter apps. Version 2.0 is out with a new Guide to the Rails Apps Composer Gem . If you build Rails applications that use popular gems or add features such as authentication, ...
'Refinements' Added to Ruby Trunk Floating around as an idea for a couple of years now, 'refinements' extend the functionality of classes within a certain module namespace. Performance issues have kept them from being readily accepted but Shugo Maeda has added to the latest MRI Ruby t...
Spree 1.2.0.rc1 is now available. The final release for Spree 1.2.0 is expected shortly so we need your help with testing. Please report any issues you encounter. Please see the Github compare for a complete list of changes in this release.
release of Testing Framework - 0.4.0 Posted by mpapis on August 09, 2012 — 0 comments I have just posted an article about new release of Testing Framework - 0.4.0 . TF is used for testign RVM, check it out if you need to test shell scripts or validate something on server, it's written...
Adhearsion 2.1.0 is out with initial support for FREESWITCH Posted by jsgoecke on August 09, 2012 — 0 comments The Adhearsion team just launched v2.1.0 with a major new feature. It has been a long time coming and oft asked feature, and now Adhearsion has initial support for FREESWITCH...
apiaryio 0.0.2 Apiary.io CLI install gem install apiaryio Download Documentation Subscribe Stats Authors Apiary Ltd. 224 total downloads 40 for this version Owners Links Homepage Gemfile gem "apiaryio", "~> 0.0.2" Versions 0.0.2 August 9, 2012 0.0.1 June 12, 2012 Runtime Dependencies ...
Reddit on Rails: Part 1 [Exercise] Posted by schneems on August 09, 2012 — 0 comments Follow along as I build Reddit on Rails and walk you through how to craft a web app from scratch. Comments Post a Comment Comment abilities for non registered users are currently deactivated, pen...
Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably
Synchronized Times In Ruby & JavaScript Acceptance Tests Using Capybara, Timecop & Sinon.JS Posted by MetaSkills on August 09, 2012 — 0 comments What if you are working on a rich JavaScript application that is backed and tested by something like a Rails application and you want to alt...
Il 17/04/2012 13:34, Andrea Dallera ha scritto: > L' opzione c) cosa sarebbe esattamente? Per chi lavoreresti? Che sicurezza in grado di darti? Perdi pi tempo a scrivere software o a cercare clienti? Perch se volevo fare il commerciale non mi serviva imparare a scrivere codice. attual...
To anyone who is getting their panties bunched because someone dares suggest that you chown /usr/local, OS X does not install anything in there by default and very few programs not aimed at developers are going to put anything there. If your spouse or whoever wants to use your compute...
I'm trying to use Net::HTTP::Proxy to proxy HTTPS traffic and I've got the following code: proxy = Net::HTTP::Proxy(proxy_uri.host, proxy_uri.port) http = proxy.start(uri.host) if uri.scheme == 'https' http.use_ssl = true http.verify_mode = OpenSSL::SSL::VERIFY_NONE end resp = http.ge...
So you’ve decided to try to maximize the benefits of using the cloud. You’re certain that a Platform as a Service (PaaS) is the best option because you don’t want the extra work and distraction required to maintain a platform on an IaaS offering or the compromises of a traditional man...
On shared hosts, Apache sometimes doesn’t pass authentication headers to FCGI instances. If your environment matches this description and you cannot authenticate, try this rule in your Apache setup:
instance method which will get called with the class that using that validator as its argument. This can be useful when there are prerequisites such as an
About a year and a half ago, I made two posts on the "Best Remote Pairing Settings". The world has moved on, and so has the state of the art in remote pairing. I work remote 75% of the time, so this is an important topic for me. The setup we have now is working pretty good, so I wante...
it will be substituted for the matched text. It may contain back-references to the pattern’s capture groups of the form \d, where d is a group number, or \k<n>, where n is a group name. If it is a double-quoted string, both back-references must be preceded by an additional backslash. ...