Several months ago, Padrino 0.10.6 was released which included HTML5 support, improved stability and compatibility patches. Today after some unfortunate delays, we are releasing Padrino 0.10.7 which is a major bug fix and compatibility release. We investigated all major issues reporte...
Amanda Laucher recently queried the twitterverse on the topic of team size. In my opinion, my last project team was "too large". This blog entry will focus on the things that happened that drove me to that conclusion. note: I was the only person on the team who believed it was too lar...
I know I'm late to the party, but I just couldn't find a guide that documented a rails setup the way that I needed it to, so I just posted an updated Ruby on Rails setup guide for Ubuntu 12.04 LTS, Precise Pangolin . The guide includes the basic rails setup with rvm, ruby 1.9.3 and ra...
rails_best_practices 1.10.0 released Posted by flyerhzm on June 20, 2012 — 0 comments rails_best_practices gem 1.10.0 released, it added 3 new checkers, HashSyntaxCheck, LongLineCheck and UseParenthesesInMethodDefCheck, check out more here Comments Post a Comment Comment abilities...
Top 10 Mistakes Companies Make During Acquisitions (notes) Here are my notes from Don Keller's (@dkellerjr ) talk Top 10 Mistakes Companies Make During Acquisitions , presented today at RocketSpace in San Francisco. 1. Founder Equity Have your founders issued stock from day one so tha...
Wednesday, June 20, 2012 at 5:24AM The worst thing about software is when your tools break. Yak shaving, here I come. sinatra-asset-pipeline - Sample app showing how to integrate sinatra with sprockets. portalign - Ruby gem to help manage Amazon EC2 security groups. chaves.js - jQuery...
Building Relationships in a Database and Querying with ActiveRecord Posted by schneems on June 20, 2012 — 0 comments How exactly do we model relationships between different database tables, and how do we use those relationships in ActiveRecord? With Database Relationships and ActiveRe...
Posted by Josh Nichols on June 20, 2012 | 0 comments At Rails Machine , we provide 24×7 monitoring as part of our Managed Hosting, and Scout plays a huge part of that. Today, I’ll be talking about what we monitor with Scout, and our philosophy of monitoring. When talking about monitor...
# アプリケーションが http://example.com/example で動作している場合 get '/foo' do request.body # クライアントによって送信されたリクエストボディ(下記参照) request.scheme # "http" request.script_name # "/example" request.path_info # "/foo" request.port # 80 request.request_method # "GET" request.query_string # "" request.content_le...
knife-solo 0.0.11 Handles bootstrapping, running chef solo, rsyncing cookbooks etc install gem install knife-solo Download Subscribe Stats Authors Mat Schaffer 3,773 total downloads 23 for this version Owners Links Homepage Source Code Documentation Wiki Bug Tracker Gemfile gem "knife...
is very useful in situations where a cache entry is used very frequently and is under heavy load. If a cache expires and due to heavy load seven different processes will try to read data natively and then they all will try to write to cache. To avoid that case the first process to fin...
pathname は Unix のパス名を扱うライブラリです。 Windows などの DOSISH な環境ではドライブ名やパスの区切り文字などで問題が起きる可能性があることに注意が必要です。 DOSISH については ruby-man:DOSISH 対応 も参照してください。 基本的な使い方 Pathname オブジェクトは Pathname.new(パスを表す文字列) で生成します。 パスが指すファイルに対する操作やパス名自体の文字列操作が出来ます。 ファイル関係 Pathname オブジェクトを使って、ファイル関係の操作がいろいろ出来ます。 require ...
Amanda Laucher recently queried the twitterverse on the topic of team size. In my opinion, my last project team was "too large". This blog entry will focus on the things that happened that drove me to that conclusion. note: I was the only person on the team who believed it was too lar...
i_suck_and_my_tests_are_order_dependent! () public Call this at the top of your tests when you absolutely positively need to have ordered tests. In doing so, you’re admitting that you suck and your tests are weak. Show source # File lib/minitest/unit.rb, line 997 def self.i_suck_and_m...
# File '/var/www/sass-pages/.sass/lib/sass/script/functions.rb', line 931 def mix(color1, color2, weight = Number.new(50)) assert_type color1, :Color assert_type color2, :Color assert_type weight, :Number Sass::Util.check_range("Weight", 0..100, weight, '%') # This algorithm factors i...
rb-fsevent 0.9.1 FSEvents API with Signals catching (without RubyCocoa) install gem install rb-fsevent Download Subscribe Stats Authors Thibaud Guillaume-Gentil, Travis Tilley 299,125 total downloads 69,169 for this version Owners Links Homepage Source Code Documentation Wiki Mailing ...