forked from hummingbird-me/kitsu-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
95 lines (81 loc) · 2.41 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
source 'https://rubygems.org'
ruby '2.3.1'
# Core Stuff
gem 'rails', '4.2.1'
gem 'rails-api'
gem 'puma'
# Database Stuff
gem 'pg' # Postgres
gem 'hiredis' # Faster redis
gem 'redis', require: ['redis', 'redis/connection/hiredis'] # Redis
gem 'redis-rails' # Redis on Rails
gem 'connection_pool' # Pool our Redises
gem 'chewy' # ElasticSearch
# Auth{entication,orization}
gem 'devise', '~> 3.5'
gem 'devise-async'
gem 'doorkeeper'
gem 'pundit'
gem 'jsonapi-authorization', '~> 0.8.0'
gem 'rolify'
# Attachments
gem 'paperclip', '~> 4.1'
gem 'paperclip-optimizer'
gem 'delayed_paperclip'
gem 'image_optim_pack', require: false
gem 'image_optim', require: false
gem 'aws-sdk'
# Background tasks
gem 'sidekiq', '~> 3.4.2'
gem 'sidetiq'
# Text pipeline
gem 'html-pipeline'
gem 'kramdown'
gem 'sanitize'
gem 'onebox'
gem 'twemoji', github: 'vevix/twemoji'
# Miscellaneous Utilities
gem 'friendly_id' # slug-urls-are-cool
gem 'nokogiri' # Parse MAL XML shit
gem 'typhoeus' # Parallelize scraping tasks
gem 'jsonapi-resources', '~> 0.8.0' # JSON-API resources
gem 'jsonapi-utils', '0.5.0.beta3' # Use JR stuff outside their abstraction
gem 'acts_as_list' # Sortables!
gem 'paranoia', '~> 2.0' # Faux deletion
gem 'counter_culture' # Fancier counter caches
gem 'stream_rails' # Feeds
gem 'hashie' # Souped-up Hashes
# Rack Middleware
gem 'rack-cors'
# Optimizations and Profiling
gem 'rack-mini-profiler'
gem 'flamegraph'
gem 'stackprof'
gem 'fast_blank' # Faster String#blank?
gem 'oj' # Blazing-fast JSON parsing
group :development, :test do
gem 'foreman' # Start processes
gem 'dotenv-rails' # Load default ENV
gem 'pry-rails' # Better Console
gem 'spring' # Faster CLI
gem 'annotate' # Schema annotations inside model-related files
# Development+Testing
gem 'factory_girl_rails' # Factories > Fixtures
gem 'database_cleaner' # Clean the database fully before doing anything
gem 'rspec-rails' # Specs > Tests
# Guard notices filesystem changes and *does things*
gem 'guard'
gem 'guard-rspec', require: false # Running specs
end
group :test do
gem 'shoulda-matchers' # it { should(:have_shoulda) }
gem 'timecop' # stop [hammer-]time
gem 'json_expressions' # Test outputted JSON
gem 'rspec-sidekiq' # Test Sidekiq jobs
gem 'faker' # Fake data
gem 'webmock' # Web faking
gem 'codeclimate-test-reporter' # CodeClimate coverage
gem 'simplecov' # Local coverage
# Libraries used to test our API itself
gem 'oauth2'
end