-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
68 lines (55 loc) · 2.38 KB
/
Gemfile
File metadata and controls
68 lines (55 loc) · 2.38 KB
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
source 'https://rubygems.org'
#
# Core rails gems
#
gem 'rails', '4.2.4' #
gem 'sass-rails', '~> 5.0' # Use SCSS for stylesheets
gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
gem 'coffee-rails', '~> 4.1.0' # Use CoffeeScript for .coffee assets and views
gem 'jbuilder', '~> 2.0' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jsonapi-resources' # JSONAPI::Resources, or "JR", provides a framework for developing a server that complies with the JSON API specification.
gem 'sdoc', '~> 0.4.0', group: :doc # bundle exec rake doc:rails generates the API under doc/api.
gem 'unicorn' # Use Unicorn as the app server
#
# Front-end/Asset-mangement gems
#
gem 'bower-rails'
gem 'jquery-rails'
#
# Production Deployment gems
#
gem "foreman"
gem "rails_12factor", group: [:production, :staging]
gem "rails_stdout_logging", group: [:production, :staging]
gem "rails_serve_static_assets", group: [:production, :staging]
#
# Basic development gems:
#
gem 'byebug', group: [:development, :test] # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'web-console', '~> 2.0', group: :development # Access an IRB console on exception pages or by using <%= console %> in views
gem 'spring', group: :development # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'capistrano-rails', group: :development # Use Capistrano for deployment
#
# Unit testing gems:
#
gem 'rspec', group: [:development, :test]
gem 'rspec-rails', '~> 3.0.0', group: [:development, :test]
gem 'shoulda-matchers', group: [:development, :test]
gem 'factory_girl_rails', group: [:development, :test]
gem 'faker', '>= 1.6.1', group: [:development, :test]
gem "fakeredis", require: "fakeredis/rspec", group: [:development, :test]
#
# Gems used by the app:
#
gem 'faraday'
gem 'faraday-detailed_logger'
gem 'awesome_print'
gem 'ohm'
gem 'tradier'
gem 'multi_json'
gem 'hashie'
gem 'classy_enum'
gem 'ruby-progressbar'
gem 'parallel'
gem 'redis'
gem 'hiredis'