Sprankelprachtig aan/afmeldsysteem

Gemfile 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. # In-place editing
  30. gem 'x-editable-rails'
  31. # Fake data generation
  32. gem 'faker'
  33. # Use HAML for templates
  34. gem 'haml'
  35. # Use Fontawesome icons
  36. gem 'font-awesome-sass'
  37. # Use YARD for documentation
  38. gem 'yard'
  39. # Use Mailgun for mail
  40. gem 'mailgun_rails'
  41. # Use Capistrano for deployment
  42. # gem 'capistrano-rails', group: :development
  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. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  49. gem 'web-console'
  50. gem 'listen', '~> 3.0.5'
  51. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  52. gem 'spring'
  53. gem 'spring-watcher-listen', '~> 2.0.0'
  54. end
  55. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  56. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]