Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing SQL queries and table schemas. * Sequel includes a comprehensive ORM layer for mapping records to Ruby objects and handling associated recor...
Figaro: Simple Rails app configuration Posted by laserlemon on April 02, 2012 — 0 comments I just released the first version of Figaro , a gem for configuring your Rails apps. Figaro helps you keep the private stuff out of your code, making it easy to open source your app. Comments ...
April 2, 2012 Tagged: empathy postgres ruby on rails Comments (View) Global min_messages When running Rails apps with Postgres in development mode, you might notice output like this when running tests: NOTICE: CREATE TABLE will create implicit sequence "users_id_seq" for serial column...
E-Commerce Tips (Part 1) Posted by drhenner on April 02, 2012 — 0 comments I've been seeing a lot of e-commerce code that have re-occurring mistakes. I'm staring a series of posts showing the mistakes I see with a better implementations and yada yada. Comments Post a Comment Comme...
Monday, April 2, 2012 at 6:12AM All worn out from weekend Scouting events. And wishing it was still the weekend, too. SMACSS and SASS - The future of stylesheets - A review of the SMACSS process of creating CSS modules. Don't break the Internet with your Javascript - Some thoughts abo...
I’ve been pushing off learning code folding in vim for a few weeks now. I ended that procrastination and I present to you a short tutorial on code folding in vim. Code folding in vim from Bryan Liles on Vimeo . The import things to remember here are to get your settings correct: "fold...
In my opinion, a lot of this confusion is cleared up by understanding the core function invocation primitive, and then looking at all other ways of invoking a function as sugar on top of that primitive. In fact, this is exactly how the ECMAScript spec thinks about it. In some areas, t...
Contributor-friendly gems Posted by joliss on April 02, 2012 — 0 comments Are you a gem author bundling third-party code (JavaScript or CSS)? Make your gem contributor-friendly by using Git submodules. Comments Post a Comment Comment abilities for non registered users are currentl...
torquebox-core 2.0.0-java TorqueBox Core Gem install gem install torquebox-core Download Documentation Subscribe Stats Authors The TorqueBox Team 2,471 total downloads 2 for this version Owners Links Homepage Bundler gem "torquebox-core", "~> 2.0.0" Versions 2.0.0 March 31, 2012 java ...
rolify 3.0 - Role management library with resource scoping w/ Mongoid support Posted by EppO on April 02, 2012 — 0 comments I just released rolify 3.0 gem. It introduces the Mongoid ORM support in addition of the ActiveRecord adapter. This comes with a complete re-design of the librar...
Frank allows you to write automated acceptance tests for native iOS apps using cucumber. You could describe it as Selenium for iOS. Pete Hodgson from ThoughtWorks shows some Frank tests and demonstrates additional tools that Frank provides.
get '/foo' do t = %w[text/css text/html application/javascript] request.accept # ['text/html', '*/*'] request.accept? 'text/xml' # true request.preferred_type(t) # 'text/html' request.body # 클라이언트로부터 전송된 요청 본문 (아래 참조) request.scheme # "http" request.script_name # "/example" request.pa...
is Mike Gunderloy's software development weblog, covering Ruby on Rails and whatever else I find interesting in the universe of software. I'm a full-time Rails developer and contributor, available for long- or short-term consulting, with solid experience in working as part of a distri...
active_decorator 0.3.2 A simple and Rubyish view helper for Rails 3 install gem install active_decorator Download Documentation Subscribe Stats Authors Akira Matsuda 1,297 total downloads 6 for this version Owners Links Homepage Bundler gem "active_decorator", "~> 0.3.2" Versions 0.3....
Hacked Mon 02 Apr 2012 at 11:16 This site was hacked. A reader of the site noted that Google’s index of this site had been co-opted by dubious pharmaceutical offerings. I’ll gladly thank that individual publicly if they give me permission to do so; but my email reply got bounced as sp...
This talk will present the TrustTheVote project and the "I count!" movement. It will cover the technology roadmap, progress so far, and next steps, including expansion of development efforts and opportunities for involvement in design and construction of trustworthy voting technology ...
As long as we're talking theory & coupling... From the perspective of the view, it has to 'know' a priori how the controller is providing data, either instance variables or expose'd methods etc. I've been changing some controllers over to using respond_to/respond_with ala episode 224 ...