Нет описания

Gemfile 762B

123456789101112131415161718192021222324252627282930
  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. gem 'jwt'
  7. gem 'twitter_oauth'
  8. gem 'httpclient'
  9. gem 'responders', '~> 2.0'
  10. gem 'active_model_serializers', '~> 0.8.2'
  11. gem 'bcrypt', '~> 3.1.7'
  12. gem 'sinatra'
  13. gem 'thin', group: :development
  14. group :development, :test do
  15. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  16. gem 'byebug'
  17. # Access an IRB console on exception pages or by using <%= console %> in views
  18. gem 'web-console', '~> 2.0'
  19. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  20. gem 'spring'
  21. end