forked from baohle/connect-starter-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·67 lines (61 loc) · 1.72 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
source 'https://rubygems.org'
ruby '2.3.1'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
#Common Gems
gem 'rails', '5.0.0'
gem 'pg', '~> 0.21.0'
gem 'nokogiri'
gem 'httparty'
gem 'will_paginate'
gem 'jquery-ui-rails'
gem "select2-rails"
gem 'jquery-datatables-rails', :git =>'https://github.com/rweng/jquery-datatables-rails.git'
gem 'bootstrap-sass', '~> 3.4.1'
gem 'sassc-rails', '>= 2.1.0'
# gem 'zuora_api_oauth_alpha', '2'
#Front End Gems
gem 'simple_form'
gem 'peek'
gem 'peek-git'
gem 'peek-pg'
gem 'peek-performance_bar'
gem 'peek-redis'
gem 'peek-resque'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'bootstrap-toggle-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-migrate-rails'
gem 'underscore-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# Rescue workers and delayed worker response
gem 'redis', '3.3.5'
gem 'redis-session-store'
gem 'redis-browser'
gem 'resque', :require => 'resque/server'
gem 'resque-scheduler', '4.3.0'
gem 'resque-pool'
gem 'resque-web', require: 'resque_web'
gem 'listen'
gem 'turbolinks'
gem 'awesome_print'
group :production do
gem 'unicorn'
gem 'unicorn-worker-killer'
end
group :development do
gem 'derailed'
gem 'web-console', '~> 2.0'
gem 'letter_opener'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'byebug'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
end