Improving feed queries, switching API to doorkeeper authentication
Showing
- Gemfile 6 additions, 0 deletionsGemfile
- Gemfile.lock 22 additions, 0 deletionsGemfile.lock
- app/controllers/api/accounts_controller.rb 1 addition, 1 deletionapp/controllers/api/accounts_controller.rb
- app/controllers/api/follows_controller.rb 1 addition, 1 deletionapp/controllers/api/follows_controller.rb
- app/controllers/api/statuses_controller.rb 1 addition, 1 deletionapp/controllers/api/statuses_controller.rb
- app/controllers/api_controller.rb 1 addition, 1 deletionapp/controllers/api_controller.rb
- app/helpers/stream_entries_helper.rb 2 additions, 1 deletionapp/helpers/stream_entries_helper.rb
- app/models/feed.rb 1 addition, 1 deletionapp/models/feed.rb
- app/models/status.rb 3 additions, 0 deletionsapp/models/status.rb
- app/services/precompute_feed_service.rb 2 additions, 2 deletionsapp/services/precompute_feed_service.rb
- app/views/stream_entries/_status.html.haml 2 additions, 2 deletionsapp/views/stream_entries/_status.html.haml
- config/initializers/doorkeeper.rb 8 additions, 1 deletionconfig/initializers/doorkeeper.rb
... | ... | @@ -30,7 +30,12 @@ gem 'rails_autolink' |
gem 'doorkeeper' | ||
gem 'rabl' | ||
gem 'oj' | ||
gem 'hiredis' | ||
gem 'redis', '~>3.2' | ||
gem 'fast_blank' | ||
gem 'htmlentities' | ||
gem 'message_bus' | ||
gem 'onebox' | ||
group :development, :test do | ||
gem 'rspec-rails' | ||
... | ... | @@ -51,6 +56,7 @@ group :development do |
gem 'rubocop', require: false | ||
gem 'better_errors' | ||
gem 'binding_of_caller' | ||
gem 'rack-mini-profiler' | ||
end | ||
group :production do | ||
... | ... |
Please register or sign in to comment