-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
118 lines (97 loc) · 2.91 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
ruby '2.4.1'
gem 'rails', '5.1.4'
# Servers
gem 'puma', '~> 3.10'
# Background jobs within the same process as web application
gem 'sucker_punch', '~> 2.0'
# Multi-environment configuration
gem 'simpleconfig', '~> 2.0'
# API
gem 'rabl', '~> 0.13.1'
# Forms
gem 'simple_form', '~> 3.5'
# ODM and related
gem 'client_side_validations', '~> 9.3'
gem 'client_side_validations-simple_form', '~> 6.3'
gem 'kaminari', '~> 1.0'
gem 'kaminari-mongoid', '~> 1.0'
gem 'mongoid', '~> 6.2'
gem 'mongoid-geospatial', '~> 5.0'
gem 'mongoid-slug', '~> 5.3'
gem 'mongoid_paranoia', '~> 0.3'
gem 'validates_timeliness', '~> 4.0'
gem 'validates_timeliness-mongoid', github: 'johnnyshields/validates_timeliness-mongoid'
# Authentication framework
gem 'devise', '~> 4.3'
# Geospatial data library
# gem 'rgeo', '~> 0.6.0'
# Facebook integration
gem 'koala', '~> 3.0'
gem 'omniauth-facebook', '~> 4.0'
# Performance
gem 'newrelic_rpm', '~> 4.4'
# Security
gem 'secure_headers', '~> 3.7'
# Miscellanea
gem 'google-analytics-rails', '~> 1.1'
gem 'http_accept_language', '~> 2.1'
gem 'jquery-rails', '~> 4.3'
gem 'slim-rails', '~> 3.1'
# Assets
gem 'autoprefixer-rails', '~> 7.1'
gem 'coffee-rails', '~> 4.2'
gem 'handlebars_assets', '~> 0.23.2'
gem 'i18n-js', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'sprockets', '~> 3.7'
gem 'sprockets-rails', '~> 3.2'
gem 'turbolinks', '~> 5.0'
gem 'twbs_sass_rails', '~> 4.7'
gem 'uglifier', '~> 3.2'
group :development, :test do
gem 'bullet', '~> 5.6'
gem 'byebug', '~> 9.1'
gem 'factory_girl_rails', '~> 4.8'
gem 'faker', '~> 1.8'
gem 'pry', '~> 0.10.4'
gem 'pry-byebug', '~> 3.5'
gem 'pry-rails', '~> 0.3.6'
gem 'rspec-rails', '~> 3.6'
gem 'rubocop', '~> 0.49.1', require: false
gem 'scss_lint', '~> 0.54.0', require: false
gem 'slim_lint', '~> 0.13.0', require: false
end
group :development do
gem 'better_errors', '~> 2.3'
gem 'binding_of_caller', '~> 0.7.2'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'meta_request', '~> 0.4.3'
gem 'spring', '~> 2.0'
gem 'spring-commands-rspec', '~> 1.0'
gem 'spring-watcher-listen', '~> 2.0'
gem 'web-console', '~> 3.5'
end
group :test do
gem 'capybara', '~> 2.15'
gem 'capybara-screenshot', '~> 1.0'
gem 'coveralls', '~> 0.8.21', require: false
gem 'database_cleaner', '~> 1.6'
gem 'email_spec', '~> 2.1'
gem 'launchy', '~> 2.4'
gem 'mongoid-rspec', github: 'mongoid-rspec/mongoid-rspec'
gem 'poltergeist', '~> 1.16'
gem 'rspec', '~> 3.6'
gem 'simplecov', '~> 0.14.1', require: false
gem 'webmock', '~> 3.0', require: false
end
group :staging, :production do
gem 'airbrake', '~> 6.2'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', '~> 1.2017', platforms: %i[mingw mswin x64_mingw jruby]