A simple twilio app in rails and angular

.gitignore 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. database.yml
  2. # Created by http://www.gitignore.io
  3. ### Emacs ###
  4. # -*- mode: gitignore; -*-
  5. *~
  6. \#*\#
  7. /.emacs.desktop
  8. /.emacs.desktop.lock
  9. *.elc
  10. auto-save-list
  11. tramp
  12. .\#*
  13. # Org-mode
  14. .org-id-locations
  15. *_archive
  16. # flymake-mode
  17. *_flymake.*
  18. # eshell files
  19. /eshell/history
  20. /eshell/lastdir
  21. # elpa packages
  22. /elpa/
  23. # reftex files
  24. *.rel
  25. # AUCTeX auto folder
  26. /auto/
  27. ### Rails ###
  28. *.rbc
  29. capybara-*.html
  30. .rspec
  31. /log
  32. /tmp
  33. /db/*.sqlite3
  34. /public/system
  35. /coverage/
  36. /spec/tmp
  37. **.orig
  38. rerun.txt
  39. pickle-email-*.html
  40. # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
  41. twilio/config/initializers/secret_token.rb
  42. twilio/config/secrets.yml
  43. ## Environment normalisation:
  44. /.bundle
  45. /vendor/bundle
  46. # these should all be checked in to normalise the environment:
  47. # Gemfile.lock, .ruby-version, .ruby-gemset
  48. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  49. .rvmrc
  50. # if using bower-rails ignore default bower_components path bower.json files
  51. /vendor/assets/bower_components
  52. *.bowerrc
  53. bower.json
  54. ### Sass ###
  55. .sass-cache
  56. /twilio/Gemfile~