Friday, December 2, 2011

Sample Application

Just completed chapter 3 of Hartl's Raills Tutorial.  Only real change is adding haml to the mix. While haml does not seem to be officially part of Rails 3.1 I thought this would be a good time to add.

Chapter 3 is just about mostly static pages and adding rspec and autotest.

Code pushed to github.

Gemfile:

source 'http://rubygems.org'

gem 'rails', '3.1.3'

gem 'sqlite3'

gem 'haml', '~>3.1.4'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.1.5'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end

group :development do
gem 'rspec-rails', '2.7.0'
end

group :test do
gem 'rspec-rails', '2.7.0'
gem 'webrat', '0.7.3'
gem 'spork', '0.9.0.rc9'
end

gem 'jquery-rails'

No comments:

Post a Comment