-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGemfile
More file actions
108 lines (83 loc) · 2.26 KB
/
Gemfile
File metadata and controls
108 lines (83 loc) · 2.26 KB
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
source "https://rubygems.org"
ruby "3.0.6"
# Configuration management. keep on top of Gemfile
gem "dotenv-rails", groups: %i[development test]
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.1.7.4"
gem "rake"
# JSON serializer
gem "active_model_serializers", "0.9.8"
# Use postgresql and mongo as the database for Active Record
gem "mongoid", "7.3.3"
gem "pg", "1.2.3"
# Use Puma as the app server
gem "puma", "5.6.4"
# Authentication libraries
gem "cancancan", "~> 3.3.0"
gem "cancancan-mongoid", "2.0.0"
gem "devise", "4.8.0"
gem "devise_invitable", "2.0.5"
gem "omniauth", "1.8.1"
gem "omniauth-facebook", "3.0.0"
# Colored output to console
gem "colored", "~> 1.2"
# Background jobs
gem "sidekiq", "~> 6.4"
# Structured seed data
gem "seedbank"
# ISO 3166 standard countries
gem "countries", require: "countries/global"
# Pusher Client
gem "pusher"
# ActiveRecord data translations
gem "globalize"
# Abort requests that are taking too long
gem "rack-timeout"
# wrapper for forecast.io API, Dark Sky
gem "forecast_io"
gem "geocoder"
gem "nearest_time_zone"
gem "symmetric-encryption"
gem "ruby-progressbar", require: false
gem "kaminari-actionview"
gem "kaminari-mongoid"
gem "rack-cors", "1.1.1", require: "rack/cors" # freezing to gemfile.lock version because heroku is not respecting lockfile
gem "simplecov", require: false, group: :test
gem "rswag-api"
gem "rswag-ui"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "bullet"
gem "byebug"
gem "database_cleaner"
gem "database_cleaner-mongoid"
gem "erb_lint", require: false
gem "factory_bot_rails"
# Generate Fake data
gem "ffaker"
gem "pry-byebug"
gem "pry-doc"
gem "pry-rails"
gem "rspec-rails"
gem "standardrb"
gem "rswag-specs"
end
group :development do
gem "annotate"
gem "awesome_print", "~>1.6"
gem "better_errors", "~>2.1"
gem "foreman", require: false
gem "letter_opener"
end
group :test do
gem "mongoid-rspec"
gem "shoulda-matchers"
gem "vcr"
gem "webmock"
end
group :production do
gem "rails_12factor"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "bugsnag", "~> 6.22"