RubyMotion isn’t open source and currently fully relies on the shoulder of a single man. If unfortunately, Laurent goes out of business or decides to do something else then we will have to rewrite our apps in Objective-C. Using RubyMotion for a professional product represents a signif...
class UserStepsController < ApplicationController include Wicked::Wizard steps :personal, :social def show @user = current_user render_wizard end def update @user = current_user @user.attributes = params[:user] render_wizard @user end private def redirect_to_finish_wizard redirect_to ...
May 4, 2012 Tagged: test-driven development learning Comments (View) I Suck at Testing Testing is widespread in the Rails community, which is awesome. For most new developers, learning to test is not simple. New developers often think testing should come naturally if you can code well...
Deploying to Amazon EC2 allows you to scale an application quickly. Learn how to use Rubber to deploy to the cloud with just a few commands and monitor the cluster with various web tools.
Posted by wbailey on May 04, 2012 — 0 comments Katas are well known in the ruby community as a great way to practice the language. The kata gem provides facilities to make the practice easier. Writing a kata is as easy as writing an rspec test while taking it is a step by step process...
You should invest in Code Reading skills Posted by samnang on May 04, 2012 — 0 comments Code Reading skill is important for programmers/developers. I write a summary why it is important and what I usually do myself to improve code reading skills. Comments Post a Comment Comment ab...
May 1st, 2012 This week the Pipeline still has its Dummies, Rails Behaviors push the unobtrusiveness, the post-RailsConf Issues hunt continues, Exhibits & Presenters help you to decorate, and the Signals pay attention to details. Meanwhile Rails 4 picks up pace, we talk to Santiago ab...
When writing nicely encapsulated code and you have a group of objects that share an interface (pick your favorite patterns), you often want to share your test code as well. If the system models financial accounts with credits and debits, and you make a change to the reconciliation cod...
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...
Maktoub updated: newsletter unsubscribe link and improved reliability Posted by zadasnotes on May 04, 2012 — 0 comments Maktoub 0.2.3 is now released. It includes a new controller action that allows for unsubscribing as well as improved reliability when sending newsletters to a large ...
DHH's RailsConf 2012 Keynote (YouTube) DHH rails against conservatism, people who think about the newbies, and ex-hippies, while celebrating progress and getting the audience to chant "I will not fear change, I will not fight progress". "Stay hippie," he closes. Spree 1.1 (Rails E-com...
Releasing Sandglaz's Restful API based on Rails and Devise Oauth2 Providable Posted by zadasnotes on May 04, 2012 — 0 comments Announcing The Sandglaz API with Restful interface and uses Oauth2 for authorization using Devise Oauth2 Providable . Here is the API documentation . Comments...
by Joshua Dockery on Introducing Epics: They’re like stories, but bigger by Steven Smith on Introducing Epics: They’re like stories, but bigger by Ronan Dunlop on Introducing Epics: They’re like stories, but bigger by Rob Barrow on Introducing Epics: They’re like stories, but bigger b...
MacRuby on iOS - RubyMotion review Posted by mattetti on May 04, 2012 — 0 comments I wrote a review of RubyMotion , a new toolchain for iOS based on MacRuby. Comments Post a Comment Comment abilities for non registered users are currently deactivated, pending time to add a proper ...
RubyMotion позволяет писать нативные iOS-приложения на Ruby, а не Objective-C. Вы пишите приложение, используя привычные для Ruby-программиста инструменты - консоль, Rake, gem-библиотеки, ваш любимый текстовый редактор. RubyMotion не является бесплатным продуктом, но сейчас можно полу...
drbrain | Fri, 04 May 2012 00:57:28 GMT Posted in Misc I sat down with Elise Worthy at RailsConf to pair with her on a Rails application that used the Wunderground API to retrieve the weather for multiple cities. If you don't know Elise, she's a Hungry Academy student formerly of Seat...
I've done all these things in the past year so I'll pitch in. The best part of using ec2's is you can get your servers to a stateless point. Where you can drop your existing servers at the drop of the hat if they have redundancies. If you were to have a web, app, db server. to split t...
Choose a random element or n random elements from the array. The elements are chosen by using random and unique indices into the array in order to ensure that an element doesn’t repeat itself unless the array already contained duplicate elements. If the array is empty the first form r...
This project is an implementation of the openEHR specification on Ruby.
Charlie Savage, author of ruby-prof , recently baked in support for Rails to ruby-prof, so now it's possible to profile your Rails application, see where the delays are, and work on improving performance. Hot on the heels of this development, Charlie wrote "How to Profile Your Applica...
terminal psql --version brew install postgresql initdb /usr/local/var/postgres pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start which psql rails new blog -d postgresql rake db:create:all rails g scaffold article name content:text rake db:migrate psql blog_...
Standup 5/4/2012 Happy Star Wars Day ... May the 4th be with you edit Posted by Tim Labeeuw on Friday May 04, 2012 at 02:04PM Help "How do i get a byte array from postgres into a png?" Paperclip allows you to magically take a StringIO object and makes it an image. "Any advice on a goo...