-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (39 loc) · 1.66 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
source 'https://rubygems.org'
ruby '2.4.2'
gem 'rails', '>= 5.1.1'
# Use mysql as the database for Active Record
gem 'mysql2'
# Use Puma as the app server
gem 'rack-cors', :require => 'rack/cors'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
gem 'puma'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
# Provides a better error page for Rails and other Rack apps. Includes source code inspection, a live REPL and local/instance variable inspection for all stack frames.
gem 'better_errors'
# Retrieve the binding of a method's caller. Can also retrieve bindings even further up the stack.
gem 'binding_of_caller'
# Testing framework
end
group :development do
# Access a console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
# Use pry as web console
gem 'pry-rails'
# The Listen gem listens to file modifications and notifies you about the changes. Works everywhere!
gem 'listen'
# Preloads app so things like console, rake and tests run faster
gem 'spring'
# Makes spring watch files using the listen gem.
gem 'spring-watcher-listen'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Quickbooks web connector
gem 'qbwc', github: 'qbwc/qbwc'
# Easily and efficiently make ActiveRecord models support hierarchies https://github.com/mceachen/closure_tree
#gem 'closure_tree', github: "mceachen/closure_tree"
# because winblows is suck, you add this thing:
gem 'wdm', '>= 0.1.0' if Gem.win_platform?