You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

52 lines
1.8 KiB

  1. source 'https://rubygems.org'
  2. gem 'paperclip', '~> 5.0.0'
  3. gem 'docsplit', '~> 0.7.6'
  4. gem 'filewatcher', '~> 0.5.3'
  5. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  6. gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
  7. # Use sqlite3 as the database for Active Record
  8. gem 'sqlite3'
  9. # Use Puma as the app server
  10. gem 'puma', '~> 3.0'
  11. # Use SCSS for stylesheets
  12. gem 'sass-rails', '~> 5.0'
  13. # Use Uglifier as compressor for JavaScript assets
  14. gem 'uglifier', '>= 1.3.0'
  15. # Use CoffeeScript for .coffee assets and views
  16. gem 'coffee-rails', '~> 4.2'
  17. # See https://github.com/rails/execjs#readme for more supported runtimes
  18. # gem 'therubyracer', platforms: :ruby
  19. # Use jquery as the JavaScript library
  20. gem 'jquery-rails'
  21. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  22. gem 'turbolinks', '~> 5'
  23. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  24. gem 'jbuilder', '~> 2.5'
  25. # Use Redis adapter to run Action Cable in production
  26. # gem 'redis', '~> 3.0'
  27. # Use ActiveModel has_secure_password
  28. gem 'bcrypt', '~> 3.1.7'
  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]