06 Feb '14, 5pm

Prevent email havesting in rails using the mail_to helper - #rails

<%= button_to "New", action: "new" %> # => "<form method="post" action="/controller/new" class="button_to"> # <div><input value="New" type="submit" /></div> # </form>" <%= button_to [:make_happy, @user] do %> Make happy <strong><%= @user.name %></strong> <% end %> # => "<form method="post" action="/users/1/make_happy" class="button_to"> # <div> # <button type="submit"> # Make happy <strong><%= @user.name %></strong> # </button> # </div> # </form>" <%= button_to "New", { action: "new" }, form_class: "new-thing" %> # => "<form method="post" action="/controller/new" class="new-thing"> # <div><input value="New" type="submit" /></div> # </form>" <%= button_to "Create", { action: "create" }, remote: true, form: { "data-type" => "json" } %> # => "<form method="post" action="/images/create" class="button_to" data-remote="true" data-type="json"> # <div> # <input value="Create" type...

Full article: http://api.rubyonrails.org/classes/ActionView/Helpers/Url...

Tweets

The Rails Command Line — Ruby on Rails Guides F...

guides.rubyonrails.org 06 Feb '14, 5pm

$ rails generate scaffold HighScore game:string score:integer invoke active_record create db/migrate/20120528060026_create...

Back to Basics: HTTP Requests in Rails Apps

rubyflow.com 05 Feb '14, 11pm

Back to Basics: HTTP Requests in Rails Apps Posted by croaky on February 06, 2014 — 0 comments This article breaks down an...

PostgreSQL awesomeness for Rails developers

rubyflow.com 04 Feb '14, 4pm

PostgreSQL awesomeness for Rails developers Posted by hubertlepicki on February 04, 2014 — 0 comments I just posted a bit ...

rxjs-rails (2.2.13): This gem makes the RxJS js...

rubygems.org 07 Feb '14, 2pm

This gem makes the RxJS js files available to the rails asset pipeline

Medium's Ruby on Rails Collection

rubyflow.com 03 Feb '14, 8pm

Medium's Ruby on Rails Collection Posted by rizwanreza on February 03, 2014 — 0 comments I've been seeing quite a lot...

Chat Example App Using Server-Sent Events:

robots.thoughtbot.com 07 Feb '14, 8pm

Chat Example App Using Server-Sent Events Mason Fischer July 14, 2013 rails redis Rails 4 can stream data to the browser w...

Rails developers can build iOS and OS X Apps to...

rubyflow.com 04 Feb '14, 7am

Rails developers can build iOS and OS X Apps too! New Book - RubyMotion for Rails Developers Posted by FluffyJack on Febru...

I'll admit it. I've been using Rails for years ...

guides.rubyonrails.org 30 Jan '14, 3pm

method does the heavy lifting of rendering your application's content for use by a browser. There are a variety of ways to...

If you are near the Portland, OR area check out...

rubyflow.com 04 Feb '14, 6pm

If you are near the Portland, OR area check out Ember for Rails Devs training in March Posted by bcardarella on February 0...

Безопасный Rails код в миграциях

rubyflow.ru 03 Feb '14, 9am

Безопасный Rails код в миграцияхAndrey Koleshko Доводилось ли вам когда-либо заполнять данными базу в миграциях, когда про...

Back to Basics: HTTP Requests in Rails Apps

Back to Basics: HTTP Requests in Rails Apps

robots.thoughtbot.com 05 Feb '14, 7pm

Request bodies are defined by a form's markup. In the form tag there is an attribute called enctype , this attribute tells...

Arduino is Rails for Hardware Hacking via @pivo...

pivotallabs.com 02 Feb '14, 6am

Just as Rails did for web development, the Arduino project combines powerful layers of abstraction with sensible defaults,...

Nested Resources and making RESTful paths for t...

guides.rubyonrails.org 03 Feb '14, 4am

Active Record Basics Rails Database Migrations Active Record Validations Active Record Callbacks Active Record Association...

hierapolis-rails (1.0.0): This gem using to  in...

rubygems.org 27 Jan '14, 8am

This gem using to  integrate hierapolis theme  on rails project.

Reading Rails - Errors and Validators

rubyflow.com 30 Jan '14, 4pm

Reading Rails - Errors and Validators Posted by netghost on January 30, 2014 — 0 comments Are you a curious developer? I s...