-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (35 loc) · 894 Bytes
/
Gemfile
File metadata and controls
45 lines (35 loc) · 894 Bytes
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
source 'https://rubygems.org'
ruby '2.3.3'
gem 'rake'
# A useful console
gem 'pry-byebug'
gem 'pry-doc'
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-rescue'
gem 'pry-stack_explorer'
# Performance monitoring and exception reporting
gem 'newrelic_rpm'
# Exception reporting to Sentry
gem "sentry-raven"
# Interaction with Slack
gem 'slack-ruby-client'
# Time zone manipulation
gem 'activesupport'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
# Testing. These are also needed in development so that Rails generators are available.
gem 'rspec'
gem 'rspec-collection_matchers'
gem 'rspec-mocks'
gem 'shoulda'
gem 'dotenv'
gem 'rspec_junit_formatter'
end
group :test do
gem 'coveralls', require: false
gem 'timecop'
gem 'webmock'
gem 'codacy-coverage', require: false
end