This repository was archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
112 lines (95 loc) · 2.32 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.6'
gem 'rails', '~> 6.0'
gem 'puma'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker'
gem 'actioncable'
gem 'activerecord-session_store'
gem 'haml-rails'
gem 'jbuilder'
gem 'sidekiq'
# gem 'sinatra', :require => nil # for the sidekiq web ui
gem 'google-analytics-rails'
gem 'redis'
gem 'redis-rails'
gem 'rollout'
gem 'rollbar' # exception service
gem 'oj'
gem 'sendgrid-ruby'
gem 'pg'
gem 'pg_search'
gem 'devise'
gem 'omniauth-github'
gem "octokit"
gem "pundit"
gem 'paperclip'
gem 'paperclip-av-transcoder'
gem 'aws-sdk-s3'
gem 'certified'
gem 'aasm'
gem 'rails-observers'
gem 'awesome_nested_set'
gem 'ahoy_matey'
gem 'groupdate'
gem 'chartkick'
gem 'hightop'
gem 'searchjoy'
gem 'acts-as-taggable-on'
gem 'userstamp', github: 'kimkong/userstamp', branch: 'rails-6-fix'
gem 'paper_trail'
gem 'diffy'
gem 'public_activity'
gem 'acts_as_votable'
# gem 'merit'
gem "interactor-rails"#, "~> 2.0"
gem 'newrelic_rpm'
gem 'exception_notification'
gem 'kramdown'
gem 'kramdown-parser-gfm'
# gem 'kramdown-syntax-coderay'
gem 'html_truncator'
gem 'will_paginate'
gem 'best_in_place', github: 'edk/best_in_place'
gem 'render_anywhere', :require => false
gem 'select2-rails'
gem 'underscore-rails'
gem 'ledermann-rails-settings', :require => 'rails-settings'
gem 'jquery-ui-rails'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
gem 'friendly_id'
gem 'simple_form'
gem 'nokogiri'
gem 'faraday'
gem 'dotenv-rails'
gem 'dotenv-deployment'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen'
gem 'sanitize_email'
end
group :development, :test do
gem 'pry-byebug'
gem 'seed_dump'
#gem 'protected_attributes' # only to get seed_dump to work
gem 'rspec-rails'
gem 'guard-rspec', require: false
gem 'factory_bot_rails'
gem 'faker'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara'
gem 'webdriver'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'tzinfo-data'