Sprankelprachtig aan/afmeldsysteem

Gemfile 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. # Use Capistrano for deployment
  41. # gem 'capistrano-rails', group: :development
  42. group :development, :test do
  43. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  44. gem 'byebug', platform: :mri
  45. end
  46. group :development do
  47. # Use sqlite3 as the database for development
  48. gem 'sqlite3'
  49. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  50. gem 'web-console'
  51. gem 'listen', '~> 3.0.5'
  52. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  53. gem 'spring'
  54. gem 'spring-watcher-listen', '~> 2.0.0'
  55. end
  56. group :production do
  57. # Use a real database in production
  58. gem 'pg'
  59. end
  60. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  61. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]