-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Vinson Chuong edited this page Nov 3, 2010
·
7 revisions
- Ruby 1.9 and Rails 3
- Add all required gems to proper bundle
in
Gemfile
- If platform-specific gems are needed, add
Gemfile
to.gitignore
. - Problematic Gems
- Windows users must install
win32-process
first. - If
rake
binary is not detected, deleterake.gemspec
- If Cucumber fails to load the Gherkin lexer, move the
gherkin_lexer_*.so
files into the required subdirectory.
- Windows users must install
- Add all required gems to proper bundle
in
- .gitignore Conventions
- For each file that you want
git
to ignore (not commit to the repo), add the path of the file (with a starting slash) to.gitignore
- To ignore a folder, also add a trailing slash.
- To have
git
"track" an empty directory, add an empty.gitkeep
to it.
- For each file that you want