-
Notifications
You must be signed in to change notification settings - Fork 187
/
Gemfile
125 lines (103 loc) · 2.31 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
113
114
115
116
117
118
119
120
121
122
123
124
125
source 'https://rubygems.org'
require 'net/http'
require 'net/https'
require 'uri'
require 'cgi'
require 'ostruct'
require 'csv'
require 'optparse'
ruby '2.7.1'
gem 'rails', '5.1.5'
gem 'json'
gem 'pg', '~> 0.18.1'
gem 'puma'
gem 'oj'
gem 'rack-cors'
gem 'rabl'
gem 'jbuilder'
gem 'bcrypt', '3.1.10'
gem 'github-markdown', :require => 'github/markdown'
# Note: version 1.0.0 is totally broken, lock the version in at
# the last known working one.
gem 'jwt', '= 0.1.11' # for Google Wallet JWT creation
gem 'money' # used to be included through the checkout gem
gem 'monetize'
gem 'rails_autoscale_agent'
gem 'newrelic_rpm'
gem 'delayed_job_active_record'
gem 'api-versions'
gem 'aasm'
gem 'oauth'
gem 'date_validator'
gem 'nokogiri'
gem 'httparty'
gem 'cancan', '~> 1.6.10'
gem 'paper_trail'
gem 'stripe'
gem 'maildown'
gem 'htmlentities'
# Frontend
gem 'sass-rails', '~> 5.0.7'
gem 'bootstrap-sass'
gem 'savon', '~> 2.12'
gem 'searchkick'
gem 'typhoeus'
gem 'faraday_middleware-aws-sigv4'
gem 'cloudinary'
gem 'eventmachine', '1.0.4'
gem 'em-http-request'
gem 'angular-rails-templates'
gem 'secure_headers'
gem 'rest-client'
group :development do
gem 'zeus'
gem 'foreman'
gem 'better_errors'
gem 'binding_of_caller'
gem 'rdoc'
gem 'annotate'
gem "letter_opener"
end
group :development, :test do
gem 'pry'
gem 'byebug'
gem 'fog'
gem 'slack-notifier'
gem 'git'
gem 'octokit'
gem 'dotenv-rails'
gem 'faker'
end
group :test do
gem 'rspec-rails'
gem 'factory_bot_rails'
# gem 'curb', require: false #At this stage, we are only using curb in a test
gem 'capybara'
gem 'thin'
gem 'poltergeist'
#Need to use simplecov 0.7.1 since it forces rspec to exit with an exit code of 0 even when tests fail.
#Disabling for now since I don't think we use it
#gem 'simplecov', '~> 0.7.1'
gem 'cucumber-rails', :require => false
# database_cleaner is not required, but highly recommended
gem 'database_cleaner'
gem 'poltergeist-suppressor'
gem 'shoulda-matchers', require: false
gem 'selenium-webdriver', '~> 2.42.0'
gem 'launchy'
gem 'vcr'
gem 'webmock'
gem 'timecop'
gem 'rails-controller-testing'
end
gem 'haml'
group :production do
gem 'uglifier'
gem 'asset_sync'
gem 'fog-aws'
gem 'execjs'
gem 'therubyracer'
gem 'ngannotate-rails'
gem 'rack-timeout'
end
gem "barnes"