A simple twilio app in rails and angular

.gitignore 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. /twilio/log
  34. /db/*.sqlite3
  35. /public/system
  36. /coverage/
  37. /spec/tmp
  38. **.orig
  39. rerun.txt
  40. pickle-email-*.html
  41. # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
  42. twilio/config/initializers/secret_token.rb
  43. twilio/config/secrets.yml
  44. ## Environment normalisation:
  45. /.bundle
  46. /vendor/bundle
  47. # these should all be checked in to normalise the environment:
  48. # Gemfile.lock, .ruby-version, .ruby-gemset
  49. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  50. .rvmrc
  51. # if using bower-rails ignore default bower_components path bower.json files
  52. /vendor/assets/bower_components
  53. *.bowerrc
  54. bower.json
  55. ### Sass ###
  56. .sass-cache
  57. /twilio/Gemfile~