Sprankelprachtig aan/afmeldsysteem

Gemfile 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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
  9. gem 'uglifier', '>= 1.3.0'
  10. # Use CoffeeScript for .coffee assets and views
  11. gem 'coffee-rails', '~> 4.2'
  12. # See https://github.com/rails/execjs#readme for more supported runtimes
  13. # gem 'therubyracer', platforms: :ruby
  14. # Use jquery as the JavaScript library
  15. gem 'jquery-rails'
  16. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  17. gem 'turbolinks', '~> 5'
  18. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  19. gem 'jbuilder', '~> 2.5'
  20. # Use Redis adapter to run Action Cable in production
  21. # gem 'redis', '~> 3.0'
  22. # Use ActiveModel has_secure_password
  23. gem 'bcrypt', '~> 3.1.7'
  24. # Use Bootstrap for CSS
  25. gem 'bootstrap-sass', '~> 3.3.6'
  26. gem 'autoprefixer-rails'
  27. # In-place editing
  28. gem 'x-editable-rails'
  29. # Fake data generation
  30. gem 'faker'
  31. # Use HAML for templates
  32. gem 'haml'
  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. # Use Capistrano for deployment
  40. # gem 'capistrano-rails', group: :development
  41. group :development, :test do
  42. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  43. gem 'byebug', platform: :mri
  44. end
  45. group :development do
  46. # Use sqlite3 as the database for development
  47. gem 'sqlite3'
  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. group :production do
  56. # Use a real database in production
  57. gem 'pg'
  58. end
  59. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  60. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]