forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
115 lines (99 loc) · 2.88 KB
/
Gemfile
File metadata and controls
115 lines (99 loc) · 2.88 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
109
110
111
112
113
114
115
# frozen_string_literal: true
source "https://rubygems.org"
ruby file: ".ruby-version"
gem "rails", "8.1.2"
gem "sprockets-rails"
gem "stimulus-rails"
gem "importmap-rails"
gem "activemodel-serializers-xml"
gem "actionmailer_inline_css"
gem "decent_exposure"
gem "devise"
gem "pundit"
gem "dotenv"
gem "draper"
gem "errbit_plugin"
gem "errbit_github_plugin"
gem "font-awesome-rails"
gem "htmlentities"
gem "kaminari"
gem "kaminari-mongoid"
gem "kaminari-i18n"
gem "mongoid"
gem "faraday-retry"
gem "octokit"
gem "omniauth"
gem "omniauth-rails_csrf_protection"
gem "omniauth-github"
gem "omniauth-google-oauth2"
gem "rails_autolink"
gem "useragent"
gem "uri"
gem "rack-timeout", require: false
gem "puma"
# ~/.rbenv/versions/3.4.2/lib/ruby/gems/3.4.0/gems/mongoid-9.0.6/lib/mongoid/indexable.rb:6: warning: ~/.rbenv/versions/3.4.2/lib/ruby/3.4.0/ostruct.rb was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0.
# You can add ostruct to your Gemfile or gemspec to silence this warning.
gem "ostruct"
# Please don't update hoptoad_notifier to airbrake.
# It's for internal use only, and we monkeypatch certain methods
gem "hoptoad_notifier",
git: "https://github.com/errbit/hoptoad_notifier",
branch: "errbit"
# Notification services
# ---------------------------------------
gem "campy"
# Hoiio (SMS)
gem "hoi"
# Pushover.net (iOS/Android Push notifications)
gem "pushover2"
# Hubot
gem "httparty"
gem "icalendar"
gem "json"
gem "pry-rails"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.4", require: false
# Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/]
gem "thruster", require: false
group :development, :test do
gem "airbrake", "~> 4.3.5", require: false
gem "rubocop", require: false
gem "rubocop-rails", require: false
gem "rubocop-rake", require: false
gem "rubocop-capybara", require: false
gem "rubocop-rspec", require: false
gem "rubocop-rspec_rails", require: false
gem "rubocop-performance", require: false
gem "rubocop-disable_syntax", require: false
gem "rubocop-thread_safety", require: false
gem "rubocop-factory_bot", require: false
gem "standard", "1.54.0", require: false
gem "faker"
gem "factory_bot_rails"
gem "brakeman", require: false
gem "herb", require: false
end
group :development do
gem "listen", "~> 3.10"
gem "bundler-audit", require: false
end
group :test do
gem "rails-controller-testing"
gem "rspec-rails", require: false
gem "rspec-rebound", require: false
gem "rspec-activemodel-mocks"
gem "mongoid-rspec"
gem "pundit-matchers"
gem "capybara"
gem "selenium-webdriver"
gem "launchy"
gem "email_spec"
gem "simplecov", require: false
gem "super_diff"
gem "webmock"
gem "vcr"
end
gem "jquery-rails"
gem "pjax_rails"
gem "underscore-rails"
eval_gemfile "./UserGemfile"