-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathGemfile
81 lines (69 loc) · 1.77 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", "~> 8.0.0"
gem "actionpack-page_caching"
gem "acts_as_list"
gem "alba"
gem "bcrypt", "~> 3.1.12"
gem "bootsnap", ">= 1.1.0", require: false
gem "dalli"
gem "dynamic_image", "~> 2.1"
gem "fastimage"
gem "fog-aws"
gem "httparty", "~> 0.17"
gem "nokogiri"
gem "pg"
gem "puma"
gem "redcarpet", "~> 3.5"
gem "rouge"
gem "ruby-filemagic", require: "filemagic"
gem "ruby-oembed", require: "oembed"
gem "sunspot_rails", "~> 2.6.0"
gem "validate_url"
gem "mission_control-jobs"
gem "solid_queue"
# Frontend
gem "b3s_emoticons",
git: "https://github.com/b3s/b3s_emoticons.git",
branch: :master
gem "cssbundling-rails"
gem "gemoji"
gem "jsbundling-rails"
gem "react-rails"
gem "sprockets-rails"
gem "terser"
# Used to generate non-digested assets for inclusion in third-party themes.
gem "non-stupid-digest-assets"
# 3rd party monitoring
gem "newrelic_rpm", group: "newrelic"
gem "sentry-rails"
gem "sentry-ruby"
group :development do
gem "capistrano"
gem "capistrano-bundler"
gem "capistrano-rails"
gem "capistrano-rbenv"
gem "web-console"
end
group :development, :test do
gem "dotenv-rails"
gem "pry"
gem "capybara"
gem "factory_bot_rails"
gem "json_spec"
gem "rails-controller-testing"
gem "rspec-rails"
gem "selenium-webdriver"
gem "shoulda-matchers", [">= 4.3.0", "!= 4.4.0"]
gem "simplecov"
gem "sunspot_solr"
gem "webmock", require: false
gem "rubocop", require: false
gem "rubocop-capybara", require: false
gem "rubocop-factory_bot", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rubocop-rspec_rails", require: false
end