Sprankelprachtig aan/afmeldsysteem

Gemfile 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. source 'https://rubygems.org'
  2. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  3. gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
  4. # Use Puma as the app server
  5. gem 'puma', '~> 3.0'
  6. # Use SCSS for stylesheets
  7. gem 'sass-rails', '~> 5.0'
  8. # Use Uglifier as compressor for JavaScript assets, babel for ES6
  9. gem 'babel-transpiler'
  10. gem 'uglifier', '>= 1.3.0'
  11. # Use CoffeeScript for .coffee assets and views
  12. gem 'coffee-rails', '~> 4.2'
  13. # Use jquery as the JavaScript library
  14. gem 'jquery-rails'
  15. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  16. gem 'turbolinks', '~> 5'
  17. # Use ActiveModel has_secure_password
  18. gem 'bcrypt', '~> 3.1.7'
  19. # Use Bootstrap for CSS
  20. gem 'autoprefixer-rails'
  21. gem 'bootstrap-sass', '~> 3.3.6'
  22. # In-place editing
  23. gem 'x-editable-rails'
  24. # Fake data generation
  25. gem 'faker'
  26. # Use HAML for templates
  27. gem 'haml'
  28. # Use RABL for JSON
  29. gem 'oj'
  30. gem 'rabl'
  31. # Clipping
  32. gem 'clipboard-rails'
  33. # Use Fontawesome icons
  34. gem 'font-awesome-sass'
  35. # Use YARD for documentation
  36. gem 'yard'
  37. # Use Mailgun for mail
  38. gem 'mailgun_rails'
  39. # Pagination
  40. gem 'will_paginate', '~> 3.1.0'
  41. # Bootstrap integration for will_paginate
  42. gem 'bootstrap-will_paginate'
  43. # Delayed jobs
  44. gem 'daemons'
  45. gem 'delayed_job'
  46. gem 'delayed_job_active_record'
  47. # Error reporting
  48. gem 'sentry-raven'
  49. # Calendar support
  50. gem 'icalendar'
  51. group :development, :test do
  52. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  53. gem 'byebug', platform: :mri
  54. end
  55. group :development do
  56. # Use sqlite3 as the database for development
  57. gem 'sqlite3'
  58. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  59. gem 'listen', '~> 3.0.5'
  60. gem 'web-console'
  61. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  62. gem 'spring'
  63. gem 'spring-watcher-listen', '~> 2.0.0'
  64. # Translation helpers
  65. gem 'i18n_generators'
  66. # Codestyle enforcement
  67. gem 'rubocop'
  68. end
  69. group :production do
  70. # Use a real database in production
  71. gem 'pg'
  72. end
  73. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  74. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]