-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (41 loc) · 977 Bytes
/
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
source 'https://rubygems.org'
# Ruby Version
# ruby "2.2.1"
# Adding Sinatra Drivers
gem 'sinatra'
gem 'sinatra-contrib'
# Adding thin gem as advised
gem 'thin'
# Adding ActiveRecord and Database Components
gem 'activerecord'
gem 'activesupport'
gem 'sinatra-activerecord'
# Adding Database elements
gem 'pg'
# Adding rake for management
gem 'rake'
# Adding rspec for running unit testing
gem 'rspec'
group :development, :test do
# Adding shotgun for local web hosting
gem 'shotgun'
end
group :production do
# Heroku
# ==================
gem 'rails_12factor' # Heroku Gem Supports
gem 'puma' # Using puma for
#include faker
gem 'faker', '~> 1.6', '>= 1.6.6'
end
gem "eventmachine", "1.0.9"
gem 'bcrypt', '~> 3.1.7'
gem 'byebug'
#putting constraint on which parameter are allowed for each rout
gem 'sinatra-strong-params'
#flash notice
gem 'rack-flash3'
#include faker
gem 'faker', '~> 1.6', '>= 1.6.6'
#will-paginate
gem 'will_paginate', '~> 3.1.1'