-
Notifications
You must be signed in to change notification settings - Fork 19
/
Gemfile
160 lines (124 loc) · 3.81 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
source 'https://rubygems.org'
ruby '3.1.3'
# same method is used in https://github.com/rails/rails/blob/master/Gemfile
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 7.0.8'
gem 'unleash', '~> 5.0.4'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Slim templates generator for Rails 3 and 4
gem 'slim-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 3.2'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# As of Rails 7.0, sprocket-rails is no longer a dependency of rails itself
gem "sprockets-rails"
# Add ability to generate source maps in Sprockets
gem 'sprockets_uglifier_with_source_maps'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'puma', '~> 6.4.3'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.8.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', group: :doc
# takes care of importing javascript dependencies
# see /bower.json for more info
gem 'bower-rails'
# Adds HTML templates into Angular's $templateCache using asset pipeline.
# angular-rails-templates > 1.0.0 now compatible with sprockets > 3.0
gem 'angular-rails-templates'
# Javascript packages pre-processor
gem "shakapacker", "7.0.1"
gem "react_on_rails", "13.3.3"
gem 'psych', '< 4'
# salesforce
gem 'restforce', '~> 6.2.2', require: false
gem 'faye'
gem 'cometd-rails', '~> 3.0', '>= 3.0.3.1'
gem 'em-http-request'
gem 'public_suffix' # used for config/initializers/cookie_jar.rb
# handy ruby extensions
gem 'facets', require: false
gem 'rack', '>= 2.2.3'
# for redirecting
gem 'rack-rewrite', '~> 1.5.0'
# for CORS requests (specifically for CDN handling)
gem 'rack-cors', '~> 1.0.5'
# address validation
gem 'easypost', '>=3.0.1'
gem 'StreetAddress', github: 'Exygy/street-address', require: 'street_address'
# google translation
gem 'faraday'
gem 'google-cloud-translate-v2'
# JSON optimization
gem 'oj'
gem 'oj_mimic_json'
# user authentication
# Note: devise 4.7.2 is unverified and causes undefined method `rails51?' errors.
gem 'devise', '4.9.0'
gem 'devise_token_auth', '~> 1.2.1'
# listing interest email token
gem 'jwt'
# postgresql database
gem 'pg'
gem 'actionmailer-text'
gem 'hashie'
gem 'sitemap_generator', github: 'Exygy/sitemap_generator'
gem 'nokogiri', '>= 1.10.10'
gem 'actionpack-page_caching', '~> 1.2.2'
# image manipulation
gem 'mini_magick', '~> 4.12.0'
gem 'image_optimizer', '~> 1.7.0'
gem 'prerender_rails', '~> 1.6.0'
# http requests made easy
gem 'http', '~> 5.1.1', require: false
gem 'sidekiq', '~> 6.5.10'
gem 'hashdiff'
gem 'fog-aws'
# https://elements.heroku.com/addons/sentry
gem 'sentry-raven'
gem 'scout_apm'
group :test do
gem 'simplecov', '~> 0.22.0'
# Provide some testing functions that were removed in Rails 5
gem 'rails-controller-testing'
gem 'webmock'
gem 'vcr'
end
group :development do
gem 'rubocop', '~> 1.49', require: false
gem 'rails_best_practices'
gem 'overcommit'
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'better_errors'
end
group :development, :test do
gem 'rspec-rails'
gem 'rspec-core'
gem 'shoulda-matchers'
gem 'factory_bot_rails'
gem 'awesome_print'
gem 'dotenv-rails'
gem 'jquery-rails' # only needed for jasmine-jquery
gem 'jasmine'
gem 'jasmine-jquery-rails' # used for functions like `getJSONFixture`
gem 'phantomjs', '~> 2.1.1'
gem 'pry-byebug'
gem 'pry-rails'
gem 'binding_of_caller'
gem 'database_cleaner'
gem 'foreman'
end
group :production do
gem 'newrelic_rpm'
gem 'dalli'
gem 'memcachier'
gem 'rails_autoscale_agent'
end