A corporation manager and dashboard for EVE Online
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Gemfile 1.0 KiB

il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
12345678910111213141516171819202122232425262728293031323334
  1. source 'https://rubygems.org'
  2. gem 'rails', '4.2.0'
  3. gem 'sqlite3'
  4. gem 'uglifier', '>= 1.3.0'
  5. gem 'jquery-rails'
  6. gem 'bcrypt', '~> 3.1.7'
  7. # At this point, avoid using SASS or CoffeeScript
  8. # gem 'sass-rails', '~> 5.0'
  9. # gem 'coffee-rails', '~> 4.1.0'
  10. # Avoid Turbolinks for now (https://github.com/rails/turbolinks)
  11. # gem 'turbolinks'
  12. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  13. # gem 'therubyracer', platforms: :ruby
  14. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  15. # gem 'jbuilder', '~> 2.0'
  16. # bundle exec rake doc:rails generates the API under doc/api.
  17. # gem 'sdoc', '~> 0.4.0', group: :doc
  18. group :development, :test do
  19. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  20. gem 'byebug'
  21. # Access an IRB console on exception pages or by using <%= console %> in views
  22. gem 'web-console', '~> 2.0'
  23. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  24. # gem 'spring'
  25. end