forked from armandofox/audience1st
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
95 lines (87 loc) · 2.39 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
# -*- mode: ruby; -*-
source 'https://rubygems.org'
ruby '2.5.5'
# basic app components
gem 'pg', '~> 0.21'
gem 'apartment', '>= 2.1.0' # multi-tenancy: see README.md
gem 'rails', '4.2.9'
gem 'where-or' # backport from Rails 5; remove when upgrading
gem 'builder'
gem 'bundler', '1.17.2'
gem 'figaro'
gem 'sslrequirement'
gem 'haml'
gem 'gibbon'
gem 'i18n'
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails', '= 4.0.5'
gem 'jquery-ui-rails', '= 5.0.5'
gem 'nokogiri'
#gem 'pothoven-attachment_fu'
gem 'protected_attributes' # remove once we migrate to Strong Parameters
gem 'responders', '~> 2.0'
gem 'attr_encrypted' # attr_encrypted must load AFTER protected_attributes (https://github.com/attr-encrypted/attr_encrypted/issues/107)
gem 'rake'
gem 'stripe'
gem 'will_paginate'
# asset pipeline
gem 'sprockets-rails', :require => 'sprockets/railtie'
gem 'sassc-rails'
gem 'uglifier'
group :production do
gem 'rack-timeout' # prevent Heroku dynos from hanging up on timeout
gem 'newrelic_rpm'
gem 'puma-heroku'
gem 'puma'
gem 'rails_12factor'
end
group :test do
gem 'cucumber', '~> 3.0.0'
gem 'cucumber-rails', :require => false
gem 'capybara', '~> 3.0'
gem 'chronic'
gem 'launchy'
gem 'rack-test'
gem 'coveralls', :require => false
gem 'database_cleaner'
gem 'email_spec'
gem 'fake_stripe'
gem 'poltergeist'
gem 'rspec-json_expectations'
gem 'simplecov', :require => false
gem 'spring' # for 'guard'
gem 'timecop'
gem 'webmock'
gem 'vcr'
end
group :development do
gem 'derailed_benchmarks'
gem 'query_trail'
gem 'ruby-prof'
gem 'stackprof'
gem 'web-console', '~> 2.0'
gem 'sdoc', '~> 0.4.0'
end
group :development, :test do
# the following really belong in a separate 'staging' environment
gem 'faker', :git => 'https://github.com/armandofox/faker'
gem 'factory_bot_rails' # used by fake_data stuff
gem 'bullet'
gem 'byebug' # 4
gem 'pry'
gem 'listen', '~> 2.2'
gem 'guard-rspec', :require => false
gem 'guard-cucumber'
gem 'spring-commands-rspec' # for use with Guard
gem 'minitest'
gem 'faye-websocket'
gem 'rb-readline'
gem 'rspec', '~> 3.0'
gem 'rspec-rails'
gem 'rspec-its'
gem 'rspec-html-matchers'
gem 'rspec-collection_matchers' # should have(n).items, etc
gem 'rspec-activemodel-mocks' # mock_model(Customer), etc
gem 'sqlite3'
gem 'traceroute'
end