Gemfile 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. source 'https://rubygems.org'
  2. git_source(:github) do |repo_name|
  3. repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
  4. "https://github.com/#{repo_name}.git"
  5. end
  6. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  7. gem 'rails', '~> 5.1.4'
  8. # Use sqlite3 as the database for Active Record
  9. gem 'sqlite3'
  10. # Use Puma as the app server
  11. gem 'puma', '~> 3.7'
  12. # Use SCSS for stylesheets
  13. gem 'sass-rails', '~> 5.0'
  14. # Use Bootstrap for styling
  15. gem 'bootstrap-sass', '~> 3.3.7'
  16. # Use Uglifier as compressor for JavaScript assets
  17. gem 'uglifier', '>= 1.3.0'
  18. # See https://github.com/rails/execjs#readme for more supported runtimes
  19. # gem 'therubyracer', platforms: :ruby
  20. # Use CoffeeScript for .coffee assets and views
  21. gem 'coffee-rails', '~> 4.2'
  22. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  23. gem 'turbolinks', '~> 5'
  24. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  25. gem 'jbuilder', '~> 2.5'
  26. # Use jQuery
  27. gem 'jquery-rails', '~> 4.3.1'
  28. # FontAwesome
  29. gem "font-awesome-rails"
  30. # Bootstrap Forms
  31. gem 'bootstrap_form', '~> 2.7.0'
  32. gem 'select2-rails', '~> 4.0.3'
  33. gem 'possessive'
  34. # Use Redis adapter to run Action Cable in production
  35. # gem 'redis', '~> 3.0'
  36. # Use ActiveModel has_secure_password
  37. gem 'bcrypt', '~> 3.1.7'
  38. # Use faker to generate seed data
  39. gem 'faker', '~> 1.7.3'
  40. # CarrierWave for image uploading
  41. gem 'carrierwave', '1.1.0'
  42. # MiniMagick for image resizing
  43. gem 'mini_magick', '4.7.0'
  44. # Use Capistrano for deployment
  45. # gem 'capistrano-rails', group: :development
  46. group :development, :test do
  47. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  48. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  49. # Adds support for Capybara system testing and selenium driver
  50. gem 'capybara', '~> 2.13'
  51. gem 'selenium-webdriver'
  52. gem 'rails-controller-testing'
  53. end
  54. group :development do
  55. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  56. gem 'web-console', '>= 3.3.0'
  57. gem 'listen', '>= 3.0.5', '< 3.2'
  58. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  59. gem 'spring'
  60. gem 'spring-watcher-listen', '~> 2.0.0'
  61. end
  62. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  63. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]