-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
102 lines (79 loc) · 2.14 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
96
97
98
99
100
101
102
# -*- coding: utf-8 -*-
source 'https://rubygems.org'
ruby '2.2.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~>4.2'
gem 'quiet_assets'
# Admin Interface
gem 'rails_admin'
# Use SCSS for stylesheets
gem 'sass-rails', '~>5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# Everybody gotta have some Bootstrap!
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-sass'
# Needed for default layouts
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'underscore-rails'
# Adding Doorkeeper
gem 'doorkeeper'
# Integrations
gem 'stripe'
gem 'twilio-ruby'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'devise'
gem 'haml-rails'
gem 'cancan'
gem 'resque-web', require: 'resque_web'
gem 'resque-scheduler'
group :production do
gem 'pg'
gem 'execjs'
gem 'thin'
# Uncomment this for Heroku
# gem 'rails_12factor'
end
gem 'sidekiq'
# Required for sidekiq monitoring
gem 'sinatra', :require => nil
group :development, :test do
# Use sqlite3 as the database for Active Record in dev and test envs
gem 'sqlite3'
# For integration tests
gem 'timecop'
gem 'pry'
gem 'pry-remote'
gem 'pry-stack_explorer'
gem 'pry-byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
gem 'better_errors'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'capistrano'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-bundler'
gem 'capistrano-rvm'
# Can unset when https://github.com/phusion/passenger/issues/1392 is closed.
gem 'capistrano-passenger', '0.0.2'
gem 'capistrano-sidekiq'
end
gem 'dotenv'
#testing with minitest
group :test do
gem 'selenium-webdriver'
gem 'mocha'
gem 'simplecov'
gem 'webmock'
gem 'minitest-spec-rails'
gem 'minitest-rails-capybara'
gem 'database_cleaner'
end