Gemfile 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 Capistrano for deployment
  27. # gem 'capistrano-rails', group: :development
  28. group :development, :test do
  29. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  30. gem 'byebug', platform: :mri
  31. end
  32. group :development do
  33. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  34. gem 'web-console'
  35. gem 'listen', '~> 3.0.5'
  36. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  37. gem 'spring'
  38. gem 'spring-watcher-listen', '~> 2.0.0'
  39. end
  40. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  41. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  42. #gem 'rubycas-client-rails'
  43. #gem 'rack-cas', github: 'aleksandrov1988/rack-cas'
  44. gem 'rack-cas'
  45. #gem 'rack-cas', github: 'mephi-ut/rack-cas'
  46. gem 'mysql2'
  47. gem 'atomic'