Skip to content

Commit

Permalink
Merge pull request greendog99#2 from Vaysman/master
Browse files Browse the repository at this point in the history
Current version of rake 0.9 is incompatible with the current version of Rails 3.0.7. Fixed errors in partial.
  • Loading branch information
greendog99 committed Jun 5, 2011
2 parents 1d04ab7 + 008350c commit c82a8e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions files/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
source 'http://rubygems.org'

gem 'rails', '~> 3.0.5' # At least 3.0.5 but below 3.1
gem 'rake', '~> 0.8.7' # Rake 0.9 is incompatible with current version of Rails
gem 'mysql2' # Database engine
gem 'hirb' # Better console formatting. Needs .hirbrc

Expand Down
4 changes: 2 additions & 2 deletions files/app/stylesheets/partials/_grid.sass
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
$columns: 12
$col_width: 60px
$gutter: 20px
$margin = $gutter / 2
$width = $columns * ($col_width + $gutter)
$margin: $gutter / 2
$width: $columns * ($col_width + $gutter)

// Make the block n columns wide, with an optional extra value to
// alter the standard width to account for padding, borders, etc.
Expand Down

0 comments on commit c82a8e9

Please sign in to comment.