-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrails_app_pg_multiuser_tests.rb
59 lines (45 loc) · 1.05 KB
/
rails_app_pg_multiuser_tests.rb
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
# Global usage gems
gem 'haml-rails'
gem 'bootstrap-sass'
gem 'pry-rails'
gem 'pry-byebug'
gem 'puma'
# User Authentication && Authorisation
gem 'devise'
# gem 'omniauth-facebook'
# gem 'omniauth-google'
gem_group :test do
gem 'minitest-rails'
end
group :development :test do
gem 'guard'
gem 'rspec-rails'
end
# Database Backend (Environment based)
group :development, :test do
# Use sqlite3 as the database
gem 'sqlite3'
end
group :production do
gem 'pg'
end
#Background job processing
# gem 'sidekiq'
# Cloud Service Uploads
# Amazon Web Services SDK
# gem 'aws-sdk', '~> 1.61.0'
# Uploader gem
# gem 'paperclip'
# Use Capistrano for deployment
# gem 'capistrano'
# gem 'capistrano-rails'
# gem 'capistrano-bundler'
# gem 'capistrano-rbenv'
# gem 'capistrano-rvm'
# gem 'capistrano-cookbook'
# group :development, :test do
# # Call 'byebug' anywhere in the code to stop execution and get a debugger console
# # gem 'byebug'
# # Access an IRB console on exception pages or by using <%= console %> in views
# # gem 'web-console', '~> 2.0'
# end