Ruby On Rails

add news feed

post a story

Very pleased to announce that CommunityRun and the ControlShift platform have won the NSW iAwards in the Community Category. Many thanks to everyone from GetUp, ThoughtWorks and ControlShift labs for all the hard work and perseverance. ...
Very pleased to announce that CommunityRun and the ControlShift platform have won the NSW iAwards in the Community Category. Many thanks to everyone from GetUp, ThoughtWorks and ControlShift labs for all the hard work and perseverance. I'm proud to have been part of the team to build a tool that lets anyone start and run their own campaign to improve things in their community.
about 1 hour ago
We’re pleased to announce Composer support for PHP applications. This has been one of our most requested features, and should make it even easier for you to manage your apps. If you’re already using Composer, you can dive right in. If n...
We’re pleased to announce Composer support for PHP applications. This has been one of our most requested features, and should make it even easier for you to manage your apps. If you’re already using Composer, you can dive right in. If not, now is a great time to try it out. We recommend Composer for all PHP apps! What is Composer? Composer is a popular dependency manager for PHP. With it, you can specify project dependencies in a composer.json file and Composer will automatically handle the rest. For more information about Composer, take a look at the project website. Why is It Useful? Composer allows you to manage third-party dependencies separate from your code, decluttering your repository. What’s more, it makes updating your dependencies a snap. Just run composer update and Composer will fetch the latest compatible versions. How Can I Use It? Using Composer with Engine Yard is very simple. We’ll detect the presence of a composer.lock file in your repository, and automatically install your app’s dependencies. To get started with Composer for Engine Yard, take a look at the documentation. The post Announcing Composer Support appeared first on Engine Yard Developer Blog.
about 11 hours ago
http://youtu.be/djbI2yPhSlQ I spent the first half of yesterday trying to design the user interface a little more using Apple Keynote. It’s…okay. You can form boxes and colors rather quickly with it. The animation sort of works bu...
http://youtu.be/djbI2yPhSlQ I spent the first half of yesterday trying to design the user interface a little more using Apple Keynote. It’s…okay. You can form boxes and colors rather quickly with it. The animation sort of works but because you can’t get a good look at all the animation actions at once and everything happens on mouseclicks, it gets a little complicated. You’re trying tosimulate a fully functional web app on what is essentially power point. It doesn’t help that I’m not that big on mock-ups. I try to get an idea of what I want with the design then do all the nuancing when I’ve expressed everything in code. It’s probably for the best anyway. An app in the hand is worth two in demo, as they say. The last half of yesterday was dedicated to transferring back to postgres. After an hour of wrestling with my local installation, I decided to use sqlite on development since postgres is already fully installed on heroku. There are about 24 failures left for me to deal with, most of them have to do with the specific way mongoid saves records. Once that’s finished, I’ve compiled a list of features for me to implement. These are either features I’ve implemented before, like custom validations, or features that I’ve found railscast episodes to go with. I think the tough part will be creating tests for them in the first place. First of all we are going to make sure events can’t conflict, so you can’t create or accept an invite to an event when you’ve had a previous engagement on the system. Next we’re going to make it so only mutual friendships are allowed, and that you can only invite mutual friends to events. Then there’s the recover password system, beta invite system, community points, profile trust index, game persona system, messaging system, google calendar integration and event check-in system! Not to mention a whole bunch of mailers to make this all work.
about 16 hours ago
RT @cjoh: My favorite part of the 127 page form you have to fill out to get top secret clearance:
RT @cjoh: My favorite part of the 127 page form you have to fill out to get top secret clearance:
about 19 hours ago
Repository Next - Big redesign from GitHub. I'm not convinced, but perhaps I'm just too old to learn new tricks. Leveling Up on Chef Best Practices - The chef ecosystem is something I really need to learn better one of these days. Secr...
Repository Next - Big redesign from GitHub. I'm not convinced, but perhaps I'm just too old to learn new tricks. Leveling Up on Chef Best Practices - The chef ecosystem is something I really need to learn better one of these days. Secrets of the Browser Developer Tools - Things you can do with Chrome, Firebug, Firefox, Opera, and Safari. If Your Business Uses Rails 2.3 You Need To Move To A Supported Option ASAP - A look at the alternatives for old apps moving forward.
about 21 hours ago
I’ve got a simple mailer working for my app now. I feel like I’m almost getting to the point where I can start deploying, but I’m beginning to realize that I need to crystallize my direction a little here. I’ve got a minimal UI going wit...
I’ve got a simple mailer working for my app now. I feel like I’m almost getting to the point where I can start deploying, but I’m beginning to realize that I need to crystallize my direction a little here. I’ve got a minimal UI going with twitter bootstrap and some code from Mike Hartl’s railstutorial, but I think I need to figure out what I want from the end product a little better. Today I’m going to try and use Apple keynote and gimp to see if I can put together a couple of User Experience stories together. If they’re good enough, maybe I can cut them together for use on my launchrock page. Once that’s done, I’ve decided to make another change in direction. I would like to switch back from MongoDB to Postgres. I know I put a lot of work into making this work with a document based database, but the more I look at the problem I’m trying to solve, the more I realize I need a relational database. How all these individual data rows relate to each other is more important that what is actually in them. This way I can re-establish has-many through relationships. There are a lot of cool things about MongoDB, but I don’t think I’ll be able to use them until the site starts getting large. It might be possible for me to use MongoDB for more high-volume functions later. So for now, I’ll be using a more classic use case for Rails. I won’t give myself more than a day or so to do it, otherwise I’ll be throwing away a perfectly functional system.
1 day ago
Spree has recently updated its documentation regarding contributions and has included (maybe for the first time?) an official Release Policy. This is an important step forward for the Spree community so that developers can communicate to...
Spree has recently updated its documentation regarding contributions and has included (maybe for the first time?) an official Release Policy. This is an important step forward for the Spree community so that developers can communicate to clients the potential costs and benefits when upgrading Spree, understand how well Spree supports older releases, and gauge the overall speed of the "upgrade treadmill". Deprecation Warnings Deprecation warnings are to be added in patch releases (i.e. 2.0.2) and the code being deprecated will only be removed in minor versions. For example, if a deprecation warning is added in 2.0.2, 2.0.3 will still contain the same deprecation warning but in 2.1.0 the deprecation warning and the code will be gone. Deprecation warnings are very helpful for developers, but without a robust test suite exercising your application, it's easy for deprecation warnings to go unnoticed. A strong test suite coupled with deprecation warnings helps you manage your client's expectations about how upgrades can affect your Spree customizations and extensions. Master Branch Receives All Patches Master branch receives all patches, including new features and breaking API changes (with deprecation warnings, if necessary). No surprises here; the master branch is for developers and should not be used for production. If you think you've encountered a bug in Spree, make sure to create a failing test against master to make sure it hasn't be resolved by any existing patches. Read more about filing an issue for additional details. Current Stable Release Branch One branch "back" from master (currently 2-0-stable) receives patches that fix all bugs, and security issues, and modifications for recently added features (for example, split shipments). Breaking API changes should be avoided, but if unavoidable then a deprecation warning MUST be provided before that change takes place. Continuing Spree's history of very aggressive refactoring, breaking API changes are permitted in the current stable branch. If you're looking for a truly stable release of Spree, you'll need to look back two stable branches behind master. Two Releases Behind Master Two branches "back" from master (currently 1-3-stable) receives patches for major and minor issues, and security problems. Absolutely no new features, tweaking or API changes. In my opinion, this is the only branch that should be considered for use in production. With the API locked down and a greater chance of most bugs worked out while it was the current release branch, the "two-back" stable branch is a safe bet that's going to have the most up-to-date feature set. Three and Four Releases Behind Master Three branches back from master (currently 1-2-stable) receives patches for major issues and security problems. The severity of an issue will be determined by the person investigating the issue. Absolutely no features, tweaking or API changes. Four branches and more "back" from master (currently 1-1-stable and lesser) receive patches only for security issues, as people are still using these branches and may not be able to or wish to upgrade to the latest version of Spree. It's nice to see a fairly strong commitment to accepting security patches, although if we look at this in absolute terms, the 1.1.x release was put into security-patches-only mode after just 13 months. Considering that the 1-1-stable branch is 2,127 commits behind the 1-3-stable branch (!!), it's clear that Spree is now formalizing it's very aggressive release culture. Managing the Upgrade Treadmill As stated previously, a strong test suite is the best tool available to be able to determine what upstream updates affect your Spree customizations. Coupled with deprecation warnings, it becomes a fairly straight-forward process for identifying breaking changes, creating estimates for fixes, and communicating these costs to clients. Following the stated guides for customizing Spree is also recommended. When visiting the
1 day ago
Onion Pi - Anonymous browsing anywhere with this portable Tor proxy. Stubbing Views in Rails Controller Testing - Avoid the overhead of rendering views when you don't need them. Returning to Free Software: A Guide - Cutting ties with t...
Onion Pi - Anonymous browsing anywhere with this portable Tor proxy. Stubbing Views in Rails Controller Testing - Avoid the overhead of rendering views when you don't need them. Returning to Free Software: A Guide - Cutting ties with the folks who have cooperated with PRISM. Arproxy - Analyze or modify SQL in between Active Record and your database. RailsMailPreview - Free solution for previewing email from Rails applications on OS X. Docracy Terms of Service Tracker - Adds/edits/deletes across more than a thousand sites.
2 days ago
ZURB's Foundation is a front-end for quickly building applications and prototypes. It is similar to Twitter Bootstrap but uses Sass instead of LESS. Here you will learn the basics of the grid system, navigation, tooltips and more.
ZURB's Foundation is a front-end for quickly building applications and prototypes. It is similar to Twitter Bootstrap but uses Sass instead of LESS. Here you will learn the basics of the grid system, navigation, tooltips and more.
3 days ago
I'm going to hire two full time, experienced web people in September as the first members of my product delivery team at Lean Startup Machine. We'll mostly be working on Javelin, our killer app for product managers that's currently enter...
I'm going to hire two full time, experienced web people in September as the first members of my product delivery team at Lean Startup Machine. We'll mostly be working on Javelin, our killer app for product managers that's currently entering pilot phase at a handful of Fortune 100 companies. Senior Web Developer Primarily looking for full-stack web technology experience, especially with modern browser-based MVC and CSS. Best candidate will be a generalist with broad understanding of OO application design, automated testing, cloud-based production environments and Agile processes. UX Designer / Front End Specialist Looking for someone special with experience designing and coding modern web and mobile user interfaces. Javascript/HTML/CSS experience is a must. RubyMotion is a big, big plus. Location: Anywhere in the United States Compensation: Short-term contract to perm. Low six figures annually plus generous equity More Information: We are a results-oriented work environment, which means all team members must possess a strong work ethic and high-degree of emotional maturity. Unless they happen to live near me in NW Atlanta suburbs or New York City, candidates must be able to work from home reliably and communicate well via email and videoconferencing. Additionally, as an investor-funded startup, the pressure is often quite high and the right candidates need to be confident enough in their skills and opinions to hold their own among co-founders (me and Trevor) with strong personalities. Our current technology stack includes Mongo, Ruby on Rails, Spine.js, and Twitter Bootstrap, so experience with those is definitely a plus. Existing interest in lean startup topics is (of course) another big plus. Occasional travel will be required, for company meetings and/or attendance and support of our weekend workshops around the world.   If you're a recruiter don't bother contacting me.
4 days ago