Sprankelprachtig aan/afmeldsysteem

Gemfile 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 sqlite3 as the database for Active Record
  5. gem 'sqlite3'
  6. # Use Puma as the app server
  7. gem 'puma', '~> 3.0'
  8. # Use SCSS for stylesheets
  9. gem 'sass-rails', '~> 5.0'
  10. # Use Uglifier as compressor for JavaScript assets
  11. gem 'uglifier', '>= 1.3.0'
  12. # Use CoffeeScript for .coffee assets and views
  13. gem 'coffee-rails', '~> 4.2'
  14. # See https://github.com/rails/execjs#readme for more supported runtimes
  15. # gem 'therubyracer', platforms: :ruby
  16. # Use jquery as the JavaScript library
  17. gem 'jquery-rails'
  18. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  19. gem 'turbolinks', '~> 5'
  20. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  21. gem 'jbuilder', '~> 2.5'
  22. # Use Redis adapter to run Action Cable in production
  23. # gem 'redis', '~> 3.0'
  24. # Use ActiveModel has_secure_password
  25. gem 'bcrypt', '~> 3.1.7'
  26. # Use Bootstrap for CSS
  27. gem 'bootstrap-sass', '~> 3.3.6'
  28. gem 'autoprefixer-rails'
  29. # Use Capistrano for deployment
  30. # gem 'capistrano-rails', group: :development
  31. group :development, :test do
  32. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  33. gem 'byebug', platform: :mri
  34. end
  35. group :development do
  36. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  37. gem 'web-console'
  38. gem 'listen', '~> 3.0.5'
  39. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  40. gem 'spring'
  41. gem 'spring-watcher-listen', '~> 2.0.0'
  42. end
  43. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  44. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]