Sprankelprachtig aan/afmeldsysteem

Gemfile 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. # See https://github.com/rails/execjs#readme for more supported runtimes
  14. # gem 'therubyracer', platforms: :ruby
  15. # Use jquery as the JavaScript library
  16. gem 'jquery-rails'
  17. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  18. gem 'turbolinks', '~> 5'
  19. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  20. gem 'jbuilder', '~> 2.5'
  21. # Use Redis adapter to run Action Cable in production
  22. # gem 'redis', '~> 3.0'
  23. # Use ActiveModel has_secure_password
  24. gem 'bcrypt', '~> 3.1.7'
  25. # Use Bootstrap for CSS
  26. gem 'bootstrap-sass', '~> 3.3.6'
  27. gem 'autoprefixer-rails'
  28. # In-place editing
  29. gem 'x-editable-rails'
  30. # Fake data generation
  31. gem 'faker'
  32. # Use HAML for templates
  33. gem 'haml'
  34. # Use Fontawesome icons
  35. gem 'font-awesome-sass'
  36. # Use YARD for documentation
  37. gem 'yard'
  38. # Use Mailgun for mail
  39. gem 'mailgun_rails'
  40. # Pagination
  41. gem 'will_paginate', '~> 3.1.0'
  42. gem 'bootstrap-will_paginate'
  43. group :development, :test do
  44. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  45. gem 'byebug', platform: :mri
  46. end
  47. group :development do
  48. # Use sqlite3 as the database for development
  49. gem 'sqlite3'
  50. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  51. gem 'web-console'
  52. gem 'listen', '~> 3.0.5'
  53. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  54. gem 'spring'
  55. gem 'spring-watcher-listen', '~> 2.0.0'
  56. # Translation helpers
  57. gem 'i18n_generators'
  58. end
  59. group :production do
  60. # Use a real database in production
  61. gem 'pg'
  62. end
  63. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  64. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]