-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
122 lines (92 loc) · 2.3 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
source 'https://rubygems.org'
# ROR
ruby '2.7.2'
gem 'rails', '~> 6.0'
gem 'activemodel'
gem 'actionpack'
gem 'activesupport'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use webpacker
gem 'webpacker', '~> 5.x'
gem 'uglifier'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'rails-controller-testing'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', group: :doc
# MongoDB
gem 'mongoid'
gem 'mongoid_rails_migrations', git: 'https://github.com/adacosta/mongoid_rails_migrations.git'
gem 'bson_ext'
gem 'tzinfo-data'
# Geocoder
gem 'geocoder'
# Authentication helper
gem 'devise'
# Pagination helper
gem 'kaminari'
gem 'kaminari-mongoid'
# Tags
gem 'mongoid_taggable'
# Sidekiq + Web UI
gem 'sidekiq'
gem 'sinatra', require: false
gem 'slim'
gem 'redis-namespace'
# Notifications
gem 'rushover'
# Monitoring
gem 'newrelic_rpm'
# Graph
gem 'chartkick'
# Image
gem 'carrierwave-mongoid', require: 'carrierwave/mongoid'
gem 'rmagick'
gem 'fog-openstack'
group :test do
gem 'rspec-sidekiq'
end
group :development, :test do
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'pry'
# Replace fixtures
gem 'factory_bot_rails'
# Better stack straces
gem 'better_errors'
gem 'binding_of_caller'
gem 'database_cleaner'
# Use debugger
# gem 'debugger', group: [:development, :test]
# Restart proccess if the code change
# Ex for sidekiq
# bundle exec rerun --background --dir app,db,lib --pattern '{**/*.rb}' --
# bundle exec sidekiq --verbose
# Or for reloading rais server on config change
# rerun --dir config rails s
gem 'rerun'
gem 'guard'
gem 'guard-rspec'
gem 'json_spec'
# rspec doesn't support rails 6 properly yet, only in v4
gem 'rspec-rails', '4.0.0.beta3'
gem 'json'
gem 'webmock'
# OS X specific gem to listen to file change
gem 'rb-fsevent'
# Load conf from .env file
gem 'dotenv-rails'
gem 'capybara'
end
# Deployment
gem 'mina'
gem 'mina-sidekiq'
gem 'rb-readline'
# Crontab
gem 'whenever', require: false