Skip to content
Vinson Chuong edited this page Nov 3, 2010 · 7 revisions

Rides

App Architecture

User Interface

Development Notes

  • 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, delete rake.gemspec
      • If Cucumber fails to load the Gherkin lexer, move the gherkin_lexer_*.so files into the required subdirectory.
  • .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.
Clone this wiki locally