This repository has been archived by the owner on Dec 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
112 lines (78 loc) · 2.15 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby "2.4.1"
gem "rails", "~> 5.2"
# Used for user authentication
gem "devise", "~> 4.3"
gem "doorkeeper", "~> 4.2"
# Use postgresql as the database for Active Record
gem "pg", "~> 0.18"
# Exception tracking
gem "raygun4ruby"
# Use .haml for views
gem "haml-rails", "~> 1.0"
# Provides a wrapper object for models
gem "draper", "~> 3.0"
# ActiveModel on steroids!
gem "virtus", "~> 1.0"
# Use SCSS for stylesheets
gem "sass-rails", "~> 5.0"
# Use jquery as the JavaScript library
gem "jquery-rails", "~> 4.1"
gem "jquery-ui-rails", "~> 5.0"
gem "segment_rails", "0.2.0"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier", "~> 2.7"
# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc", "~> 0.4", group: :doc
# A lightweight compass alternative
gem "bourbon", "~> 4.2"
# Hooray for grid systems!
gem "neat", "~> 1.7"
# And some basic prettiness
gem "bitters", "1.2.0"
# time parsing
gem "chronic"
group :production do
# A concurrent web server
gem "puma", "~> 3.9"
# This gem makes rack requests time out...because puma doesn't
gem "rack-timeout", "~> 0.4"
end
group :development do
# Allows auto-loading of files
gem "listen"
# Catches style issues
gem "rubocop", "~> 0.48.0"
# Specifically pulls in cops for rspec
gem "rubocop-rspec", "~> 1.15"
end
group :development, :test do
# Autoloads the .env file for secrets
gem "dotenv-rails", "~> 2.2", require: "dotenv/rails-now"
# Allows us to drop some binding.prs
gem "byebug"
gem "pry-byebug"
gem "pry-rails", "~> 0.3.6"
# Gives us fixtures
gem "factory_girl_rails", "~> 4.8"
end
group :test do
gem "simplecov", require: false
# The rspec testing framework intergation for rails
gem "rspec-rails", "~> 3.6"
# Feature testing!
gem "cucumber"
gem "site_prism"
# Easy-ish Web testing!
gem "capybara", "~> 2.4"
gem "capybara-selenium"
# Grants rspec Given/When/Then syntax
gem "rspec-given", "~> 3.8"
# Write validation tests cleanly
gem "shoulda-matchers", "~> 3.1"
gem "rspec_junit_formatter"
# wibbley wobbley timey wimey
gem "timecop"
gem "email_spec"
end