#196 Nested Model Form (revised) Apr 19, 2012 | 11 minutes | Forms , Views , Active Record Handling multiple models in a single form is easy with accepts_nested_attributes_for. Here you will also learn how to add and remove nested records through JavaScript. Subscribe to Watch Episode...
Welcome to issue 89 of Ruby Weekly! RailsConf 2012 is taking place next week in Austin, Texas, so I hope you have a great time if you're going. The speaker lineup is excellent. But if not, never fear, I'll try and share videos and blog posts of the event in Ruby Weekly ASAP :-) - Pete...
A complete tutorial for Rails app using ... Posted by mattslay on April 19, 2012 — 0 comments A complete tutorial for Rails app using Devise with CanCan and Twitter Bootstrap . Includes a complete application template that you can clone from GitHub. Comments Post a Comment Comment...
Thursday, April 19, 2012 at 5:08AM No Scouting commitments today. That's becoming a rarity. Campfire for iChat - Just in case you use both services, now you can combine them. Twitter's "Innovator's Patent Agreement" - Marco Arment looks skeptically at the IPA. I couldn't have said it ...
Speed up your app with Method Cacheable Posted by schneems on April 19, 2012 — 0 comments Method Cacheable allows you to cache any Ruby method easily in memcache. It makes calls to the cache in your code explicit so you know whats going on at all times. Comments Post a Comment Com...
Some things have changed since OmniAuth version 1.0 was released. Each provider is now a separate gem that should be included in the Gemfile, and the "user_info" hash is now simply "info". The changes have be made below.
Are you still reeling from SXSW? Well, too bad, because it’s time for Austin: Round 2! RailsConf is just around the bend, and we couldn’t be more excited to participate again. We’ve got a lot of great stuff in the works for the conference, including a conference-long game (that may or...
This package allows you to generate Excel compatible spreadsheets on any platform. No OLE required. Development Status: 4 - Beta Environment: Console (Text Based) Intended Audience: Developers License: GNU General Public License (GPL) version 3 Natural Language: English Operating Syst...
<!DOCTYPE html> <html> <head> <title>Store</title> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script> <![endif]--> <%= stylesheet_link_tag "application", :media => "all" %> <%= javascript_include_tag "application" %> <%=...
Simply Pubnub.rb in gem format, require "pubnub" - ask @rubynerd for upgrades
rails-footnotes 3.7.8 has been released Posted by romanvbabenko on April 19, 2012 — 0 comments I just released rails-footnotes version 3.7.8 . - Regexp based assigns note ignoring has been added Comments Post a Comment Comment abilities for non registered users are currently deact...
Rails is a web application development framework written in the Ruby language. It is designed to make programming web applications easier by making assumptions about what every developer needs to get started. It allows you to write less code while accomplishing more than many other la...
, several teams were created to lead in certain aspects of Redmine development. Below are the names of the Team Leads, as well as a short description of what each team does. Contact these individuals if you would like to regularly contribute in their areas. However, you do not have to...
pikachu 0.0.1 This rubygem does not have a description or summary. install gem install pikachu Download Documentation Subscribe Stats Authors Erik Strömberg 256 total downloads 256 for this version Owners Bundler gem "pikachu", "~> 0.0.1" Versions 0.0.1 February 9, 2011
faye.ru require 'faye' require File.expand_path('../config/initializers/faye_token.rb', __FILE__) class ServerAuth def incoming(message, callback) if message['channel'] !~ %r{^/meta/} if message['ext']['auth_token'] != FAYE_TOKEN message['error'] = 'Invalid authentication token' end e...
<% title "Sign In" %> <% if @authentications %> <% unless @authentications.empty? %> <p><strong>You can sign in to this account using:</strong></p> <div class="authentications"> <% for authentication in @authentications %> <div class="authentication"> <%= image_tag "#{authentication.p...
v2ex 0.0.2 Command line interface to v2ex.com install gem install v2ex Download Documentation Subscribe Stats Authors Forrest Ye 8 total downloads 5 for this version Owners Links Homepage Bundler gem "v2ex", "~> 0.0.2" Versions 0.0.2 April 19, 2012 0.0.1 April 19, 2012 Runtime Depende...
Returns true if the enumerable has more than 1 element. Functionally equivalent to enum.to_a.size > 1. Can be called with a block too, much like any?, so people.many? { |p| p.age > 26 } returns true if more than one person is over 26.
utensils 0.0.2 Rspec stuff we use over and over again install gem install utensils Download Subscribe Stats Authors Jens Balvig 39 total downloads 9 for this version Owners Links Source Code Documentation Bundler gem "utensils", "~> 0.0.2" Versions 0.0.2 April 20, 2012 0.0.1 April 19,...
> Does ruby support storing and loading bytecode !! Short answer: No, it doesn't. (Slightly) longer answer: No, *Ruby* doesn't support storing and loading bytecode, but most Ruby *Implementations* do. IOW: it's not part of the Ruby Language Specification, but most Ruby Implementations...
Add full text searching using ElasticSearch and Tire. Here I will show the steps involved in adding this search to an existing application. This is the first part in a two part series.