Download Latest stable release: 1.3.2 (2012-03-11) Latest source code 1.3 Stable 1.2 Stable Development (unstable) Third-party Redmine bundles Troubleshooting Latest stable release: 1.3.2 (2012-03-11)¶ Redmine releases can be downloaded at RubyForge . See the Changelog for details and...
Tara Tiger Brown in “Dear Fake Geek Girls: Please Go Away” , currently the most popular article on Forbes (Information for the World’s Business Leaders indeed): Today the word [geek] is the exact opposite of its original meaning; a term once used to inflict social cruelty is now a ter...
and wants to meet you! Calling all Ruby developers, Web designers, and other local Web and startup folks: come out and have a beer on us.
This release changes the default value of config.active_record.whitelist_attributes to true. This change only affects newly generated applications so it should not cause any backwards compatibility issues for users who are upgrading but it may affect some tutorials and introductory ma...
Practicing Ruby's second volume now freely available 2012-03-26 14:00, written by Gregory Brown Keeping with my promise to release content from my Practicing Ruby journal , I’ve put together a massive link dump of articles from its second volume. Please enjoy them and share them with ...
March 26, 2012 Tagged: paperclip open source ruby rails Comments (View) Paperclip is Going Three-Point-Oh Nelly The new version of your favorite file upload library, Paperclip 3.0.0 , has been released earlier today. We changed a lot of internals to make Paperclip better. These change...
tmux for rails developers Posted by lucapette on March 27, 2012 — 0 comments I just published some thoughts about tmux for rails developers . Comments Post a Comment Comment abilities for non registered users are currently deactivated, pending time to add a proper CAPTCHA to solve...
In this educational video, Forrester VP and Principal Analyst John Rymer argues Platform as a Service (PaaS) holds the key to the full use of cloud computing and that he believes we’ve reached an inflection point where every IT strategy needs to incorporate cloud as a first class opti...
Ruby Lugdunum 2012 - Ruby Conf in Lyon, France Posted by pcreux on March 27, 2012 — 0 comments Ruby Lugdunum (a.k.a Rulu) will be back on June 22 - 23 in Lyon, France. Rulu 2012 is a two-day single-track conference on Ruby featuring great talks, awesome food and time to hack together!...
rails-footnotes 3.7.6 has been released Posted by romanvbabenko on March 27, 2012 — 0 comments I just released rails-footnotes 3.7.6 . Assets paths for rails version > 3.1 has been fixed! Woohoo! Comments Post a Comment Comment abilities for non registered users are currently deac...
At the end of 2011, Engine Yard conducted a detailed security audit against our Engine Yard Cloud and Orchestra platforms. While the investment was significant, we realize the importance and value that regular security testing brings. With that said, we also value the community’s inpu...
March 23rd, 2012 RSpec 2.9.0 released … GitHub Ruby Styleguide … technoweenie’s blog post, “Ending the Mass Assignment Party” … Life Without Gemsets … Custom Bundler Groups … Avdi Grimm’s _Objects on Rails_ Book Available Free March 20th, 2012 In today's episode Ruby isn't Python, Cop...
Ruby On REST 5: Learn Hypermedia By Making Fruit Salad Posted by apotonick on March 27, 2012 — 0 comments Discussing the concept of REST and hypermedia we learn what is a hypermedia type, why HAL+JSON makes our life easier and how to fix a yummy fruit salad. Comments Post a Commen...
10 Things Every Java Programmer Should Know About Ruby Jim Weirich Consultant / Compuware [email protected] Slides Available at: http://onestepback.org/articles/10things Dayton-Cincinnati Code Camp Jan 21, 2006
Jul 14, 2008 | 16 minutes | Plugins , Views Liquid is a safe way to provide a powerful template language to the site's users. See how in this episode. Click to Play Video ▶ Tweet Download: source code Project Files in Zip (101 KB) mp4 Full Size H.264 Video (25.3 MB) m4v Smaller H.264 ...
March 23rd, 2012 RSpec 2.9.0 released … GitHub Ruby Styleguide … technoweenie’s blog post, “Ending the Mass Assignment Party” … Life Without Gemsets … Custom Bundler Groups … Avdi Grimm’s _Objects on Rails_ Book Available Free March 20th, 2012 In today's episode Ruby isn't Python, Cop...
rails_admin 0.0.0 This rubygem does not have a description or summary. install gem install rails_admin Download Documentation Subscribe Stats Authors Francesc Esplugas 6,941 total downloads 6,941 for this version Owners Links Homepage Bundler gem "rails_admin", "~> 0.0.0" Versions 0.0...
Guilherme Silveira , Posted August 21, 2010, 3:47 pm Its the dependency hell that every dependency library has (Ivy with .net or java and Maven with Java face similar issues). Just the example where the “weird edge-case is exercised in production, and which your tests would have caugh...
# coding: utf-8 require 'spec_helper' describe Department do let(:department0) { FactoryGirl.create(:department, code: "robot", name: "Department0", started_on: Date.new(2000, 1, 1), ended_on: Date.new(2002, 1, 1)) } let(:department1) { FactoryGirl.create(:department, code: "robot", n...
Register or log in to add new notes. noniq - March 27, 2012 0 thanks Makes it possible to use a scope through an association This is a very useful method if you want to to use a scope through an association: class Book < ActiveRecord :: Base scope :available , where ( :available => tr...
New Relic is a performance management system, developed by New Relic, Inc (http://www.newrelic.com). New Relic provides you with deep information about the performance of your web application as it runs in production. The New Relic Ruby Agent is dual-purposed as a either a Gem or plug...
I have recently come across several related issues which I have tracked down to nginx and the way it handles DNS. I run nginx as a proxy for several back end services. It works really well, except for 1 thing. My proxy_pass refers to an upstream which points to a DNS entry. That DNS e...
Toggl provides a simple REST-style JSON API over standard HTTP - http://www.toggl.com
drbrain | Mon, 26 Mar 2012 22:17:50 GMT Posted in Software docs.seattlerb.org/net-http-persistent github.com/drbrain/net-http-persistent Manages persistent connections using Net::HTTP plus a speed fix for Ruby 1.8. It’s thread-safe too! Using persistent HTTP connections can dramatical...
bash rails surveysays script/generate nifty_layout script/generate nifty_scaffold survey name:string script/generate model question survey_id:integer content:text script/generate model answer question_id:integer content:string rake db:migrate rails surveysays script/generate nifty_lay...
PayPal's IPN (Instant Payment Notification) service allows your app to get confirmation when an order is processed. In this episode I use IPN to mark a cart as purchased.