Search
-
Recent Posts
@carbonfive
- New #OSS gem from @carbonfive alum @mperham. #Resque-killer! https://t.co/xu4l19Bt 21 hours ago
- Thanks to all who came to @carbonfive hack night #LA tonight! Great #nodejs talk by @rudy and @sivoh. Probably 25 folks still hacking... 1 week ago
- Great turnout at the @carbonfive hack night tonight with about 45 folks. #sf http://t.co/2EeDMsXR 1 week ago
Tag Archives: ruby
I’ve recently started exploring the new(ish) programming language “Go”. Go is intended to be a systems programming language and offers speed and low-level API along with some sweet features and the beginnings of a great standard library. At Carbon Five … Continue reading
I was recently on a project that captures and logs data as ActiveRecord models. Each datum had 10 or so numeric attributes. One story required pulling out all the values for a particular attribute in a time range (i.e. all … Continue reading
I recently finished working with Kathryn Aaker on upgrading Eggs, her farm CSA management software, to Rails 3. While there is a lot of good information out there on upgrading from Rails 2 to 3, we did run in to … Continue reading
A while back one of our clients requested that Rails sessions be stored in session cookies (i.e. a cookie that will expire when the browser is closed). This was for security reasons so your cookie couldn’t be read off the … Continue reading
We have been using TeamCity to manage the continuous integration, testing, and deployment of many of our recent projects. We have also been using RVM on all of our recent Rails projects to allow us to install multiple ruby versions … Continue reading
Posted in Web
Tagged continuous integration, Deployment, rapid development, ruby, Testing, Web
4 Comments
1. Download ruby source wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7.tar.gz tar -zxvf ruby-1.8.7.tar.gz 2. Install dependencies sudo yum install gcc sudo yum install gcc-c++ sudo yum install zlib-devel sudo yum install openssl-devel sudo yum install readline-devel sudo yum install sqlite3-devel 3. Build ruby from … Continue reading