-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (43 loc) · 786 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
source "https://rubygems.org"
gem "rails", "5.0.2"
gem "pg"
gem "simple_form"
gem "slim"
gem "bootstrap-sass", "~> 3.3.6"
gem "sass-rails", ">= 3.2"
gem "uglifier"
gem "coffee-rails"
gem "jquery-rails"
gem "turbolinks"
gem "jbuilder"
gem "devise"
gem "nokogiri"
gem "i18n"
gem "font-awesome-rails"
group :development do
gem "annotate", ">=2.6.0"
gem "spring"
gem "figaro"
gem "faker"
end
group :development, :test do
gem "rspec-rails", "~> 3.5.0"
gem "rails-controller-testing"
gem "capybara"
gem "factory_girl_rails"
gem "faker"
gem "pry"
gem "dotenv-rails"
end
group :production do
gem "unicorn"
gem "rails_12factor"
end
gem "newrelic_rpm"
#notifications
gem "alertifyjs-rails"
#Map Stuff
gem "geocoder"
gem "gmaps4rails"
# User"s stuff
gem "pundit"