Skip to content

Commit

Permalink
Added a Gemfile for devs working on Sass Foundation, added an .rvmrc …
Browse files Browse the repository at this point in the history
…file set to 1.9.2
  • Loading branch information
adamstac committed Nov 12, 2011
1 parent 9434421 commit c482eb5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .rvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rvm ruby-1.9.2@sass-foundation --create
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source :rubygems

gem 'compass', '~> 0.11.5'

group :development do
gem 'rake'
end

2 comments on commit c482eb5

@hatefulcrawdad
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does this do exactly?

@adamstac
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ruby dev's use Bundler to manage an apps gem dependencies. You'll also notice there's a "group" called development and that's just me isolating the Ruby gem "rake" to the development group. Actually the group isn't even needed, it could just be:

gem 'rake'
gem 'compass', '~> 0.11.5'

You can find more info on Bundler's group feature here: http://gembundler.com/groups.html

Please sign in to comment.