A corporation manager and dashboard for EVE Online
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.
 
 
 
 
 

46 lines
1.4 KiB

  1. source 'https://rubygems.org'
  2. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  3. gem 'rails', '4.2.0'
  4. # Use sqlite3 as the database for Active Record
  5. gem 'sqlite3'
  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.1.0'
  12. # See https://github.com/sstephenson/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 following links in your web application faster. Read more: https://github.com/rails/turbolinks
  17. gem 'turbolinks'
  18. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  19. gem 'jbuilder', '~> 2.0'
  20. # bundle exec rake doc:rails generates the API under doc/api.
  21. gem 'sdoc', '~> 0.4.0', group: :doc
  22. # Use ActiveModel has_secure_password
  23. # gem 'bcrypt', '~> 3.1.7'
  24. # Use Unicorn as the app server
  25. # gem 'unicorn'
  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'
  31. # Access an IRB console on exception pages or by using <%= console %> in views
  32. gem 'web-console', '~> 2.0'
  33. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  34. gem 'spring'
  35. end