Skip to content

Instantly share code, notes, and snippets.

@foxzool
Created February 11, 2011 07:46
Show Gist options
  • Select an option

  • Save foxzool/822048 to your computer and use it in GitHub Desktop.

Select an option

Save foxzool/822048 to your computer and use it in GitHub Desktop.

Revisions

  1. foxzool revised this gist Feb 11, 2011. 1 changed file with 10 additions and 6 deletions.
    16 changes: 10 additions & 6 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,11 @@
    .DS_Store
    /log/*
    /tmp/*
    .bundle
    .project
    .idea
    nbproject
    config/database.yml
    log/*
    tmp/*
    db/*.sqlite3
    db/schema.rb
    **/.DS_Store
    @@ -12,9 +16,9 @@ vendor/cache/*
    capybara-*.html
    .rspec
    .bundle
    /vendor/bundle
    /public/system/*
    /coverage/
    /spec/tmp/*
    vendor/bundle
    public/system/*
    coverage/
    spec/tmp/*
    **.orig
    rerun.txt
  2. foxzool revised this gist Feb 11, 2011. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion .gitignore
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,6 @@
    .DS_Store
    /log/*
    /tmp/*
    # ignore database.yml
    config/database.yml
    db/*.sqlite3
    db/schema.rb
  3. foxzool revised this gist Feb 11, 2011. 1 changed file with 21 additions and 24 deletions.
    45 changes: 21 additions & 24 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -1,24 +1,21 @@
    # specific to Mac OS X
    '.DS_Store'
    # ignore log files
    '/log/*'
    # ignore tmp files
    '/tmp/*'
    # ignore database.yml
    'config/database.yml'
    'db/*.sqlite3'
    'db/schema.rb'
    '**/.DS_Store'
    'vendor/cache/*'
    '*.rbc'
    '*.sassc'
    '.sass-cache'
    'capybara-*.html'
    '.rspec'
    '.bundle'
    '/vendor/bundle'
    '/public/system/*'
    '/coverage/'
    '/spec/tmp/*'
    '**.orig'
    'rerun.txt'
    .DS_Store
    /log/*
    /tmp/*
    # ignore database.yml
    config/database.yml
    db/*.sqlite3
    db/schema.rb
    **/.DS_Store
    vendor/cache/*
    *.rbc
    *.sassc
    .sass-cache
    capybara-*.html
    .rspec
    .bundle
    /vendor/bundle
    /public/system/*
    /coverage/
    /spec/tmp/*
    **.orig
    rerun.txt
  4. foxzool created this gist Feb 11, 2011.
    24 changes: 24 additions & 0 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    # specific to Mac OS X
    '.DS_Store'
    # ignore log files
    '/log/*'
    # ignore tmp files
    '/tmp/*'
    # ignore database.yml
    'config/database.yml'
    'db/*.sqlite3'
    'db/schema.rb'
    '**/.DS_Store'
    'vendor/cache/*'
    '*.rbc'
    '*.sassc'
    '.sass-cache'
    'capybara-*.html'
    '.rspec'
    '.bundle'
    '/vendor/bundle'
    '/public/system/*'
    '/coverage/'
    '/spec/tmp/*'
    '**.orig'
    'rerun.txt'