-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
78 lines (69 loc) · 2.04 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
source 'https://rubygems.org'
ruby '2.6.3'
gem 'rails'
gem 'pg'
gem 'coffee-rails'
gem 'sass-rails'
gem 'uglifier'
gem 'bootstrap-sass'
gem 'cancancan'
gem 'cocoon'
gem 'devise'
gem 'devise_invitable'
gem 'font-awesome-sass'
gem 'foreman'
gem 'jquery-rails'
gem 'haml-rails'
gem 'simple_form'
gem 'sucker_punch'
gem 'turbolinks'
gem 'wicked'
gem 'effective_addresses'
gem 'effective_assets'
gem 'effective_datatables', '~> 3.0'
gem 'effective_developer'
gem 'effective_form_inputs'
gem 'effective_logging'
gem 'effective_orders'
gem 'effective_pages'
gem 'effective_posts'
gem 'effective_roles'
gem 'effective_style_guide'
gem 'effective_trash'
# gem 'effective_addresses', path: '~/Sites/effective_addresses'
# gem 'effective_assets', path: '~/Sites/effective_assets'
# gem 'effective_ckeditor', path: '~/Sites/effective_ckeditor'
# gem 'effective_datatables', path: '~/Sites/effective_datatables'
# gem 'effective_developer', path: '~/Sites/effective_developer'
# gem 'effective_form_inputs', path: '~/Sites/effective_form_inputs'
# gem 'effective_logging', path: '~/Sites/effective_logging'
# gem 'effective_orders', path: '~/Sites/effective_orders'
# gem 'effective_pages', path: '~/Sites/effective_pages'
# gem 'effective_posts', path: '~/Sites/effective_posts'
# gem 'effective_qb_sync', path: '~/Sites/effective_qb_sync'
# gem 'effective_regions', path: '~/Sites/effective_regions'
# gem 'effective_resources', path: '~/Sites/effective_resources'
# gem 'effective_roles', path: '~/Sites/effective_roles'
# gem 'effective_style_guide', path: '~/Sites/effective_style_guide'
# gem 'effective_trash', path: '~/Sites/effective_trash'
group :development do
gem 'flamegraph'
gem 'listen'
gem 'memory_profiler'
gem 'rack-mini-profiler'
gem 'stackprof'
end
group :development, :test do
gem 'dotenv-rails'
gem 'pry-byebug' # If you encounter readline issues: rvm pkg install readline
gem 'thin'
end
group :test do
#gem 'effective_test_bot'
end
group :production do
gem 'exception_notification'
gem 'passenger'
gem 'rack-timeout'
gem 'rails_12factor'
end