forked from bespokepost/questionable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
28 lines (23 loc) · 785 Bytes
/
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
source 'http://rubygems.org'
ruby '>= 2.2'
# Declare your gem's dependencies in questionable.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# Devise is needed for creating users for the answer spec
gem 'devise'
gem 'jquery-rails'
group :development, :test do
gem 'autotest-rails'
gem 'autotest-fsevent' # Make autotest faster on OS X
gem 'autotest-notification' # show popup notices
gem 'bundler-audit'
gem 'test-unit'
end
group :test do
# Code coverage, See: https://github.com/colszowka/simplecov/issues/281
gem 'codeclimate-test-reporter', "~> 1.0.0"
gem 'pg' # Needed for CircleCI tests
gem 'rspec_junit_formatter'
gem 'simplecov'
end