-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
107 lines (81 loc) · 1.87 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
source 'https://rubygems.org'
ruby '3.1.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0.4'
gem 'puma'
# Use postgresql as the database for Active Record
gem 'hstore_accessor'
gem 'order_query'
gem 'pg'
gem 'haml-rails'
gem 'propshaft'
gem 'cssbundling-rails', '~> 1.1'
gem 'jsbundling-rails', '~> 1.0'
gem 'draper'
gem 'icalendar'
gem 'iconv'
gem 'date_time_attribute'
gem 'cocoon'
gem 'will_paginate'
gem 'color'
gem 'rmagick'
gem 'aws-sdk'
gem 'kt-paperclip'
gem 'bigdecimal'
gem 'nokogiri'
gem 'rexml'
# Users/auth
gem 'cancancan'
gem 'devise'
gem 'paper_trail'
gem 'paper_trail-association_tracking'
gem 'fuzzy_match'
# Payments
gem 'stripe'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Monitoring
gem 'newrelic_rpm'
gem 'sentry-ruby'
gem 'sentry-rails'
# Heroku runs a check against sprockets version; even though
# it's not in use, it needs to be in the gemfile.
gem 'sprockets', require: false
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :local do
gem 'debase', '0.2.5.beta2'
gem 'ruby-debug-ide', '0.7.3'
end
group :development, :test do
# Testing
gem 'active_record_query_trace'
gem 'capybara'
gem 'dotenv-rails', '>= 2.1.1'
gem 'factory_bot_rails'
gem 'ffaker'
gem 'fivemat'
gem 'rspec-rails'
gem 'spring-commands-rspec'
end
group :test do
gem 'capybara-screenshot'
gem 'launchy'
gem 'rails-controller-testing'
gem 'rspec_junit_formatter'
gem 'selenium-webdriver'
gem 'timecop'
gem 'vcr'
gem 'webmock'
gem 'simplecov', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]