-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathGemfile
More file actions
106 lines (93 loc) · 3.49 KB
/
Gemfile
File metadata and controls
106 lines (93 loc) · 3.49 KB
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
source 'https://rubygems.org'
# ------------------------------------------------------------
# Core Framework
# ------------------------------------------------------------
gem 'rails', '5.1.7'
# ------------------------------------------------------------
# Database & ODM
# ------------------------------------------------------------
gem 'mongo' # MongoDB driver
gem 'mongoid' # ODM for MongoDB
gem 'carrierwave-mongoid', require: 'carrierwave/mongoid' # File uploads with Mongoid
gem 'kaminari-mongoid' # Pagination for Mongoid
gem 'kaminari' # Pagination core
gem 'mysql2' # For CMS (RefineryCMS)
# ------------------------------------------------------------
# Authentication & Authorization
# ------------------------------------------------------------
gem 'devise'
gem 'devise-encryptable'
gem 'bcrypt'
# ------------------------------------------------------------
# CMS (RefineryCMS)
# ------------------------------------------------------------
gem 'refinerycms'
gem 'refinerycms-authentication-devise'
gem 'refinerycms-wymeditor'
# Temporary fix: refinerycms-i18n pinned due to crash in story 1831
# MUST BE REMOVED when upgrading Refinery to v5
gem 'refinerycms-i18n', '4.0.2',
git: 'https://github.com/refinery/refinerycms-i18n',
ref: '30059ea'
# Custom Refinery extension
gem 'refinerycms-county_pages', path: 'vendor/extensions'
# ------------------------------------------------------------
# Frontend & Assets
# ------------------------------------------------------------
gem 'sass-rails'
gem 'coffee-rails'
gem 'bourbon' # Sass mixins
gem 'font_awesome5_rails'
gem 'jquery-rails'
gem 'uglifier' # JS compressor
# ------------------------------------------------------------
# Utilities & Enhancements
# ------------------------------------------------------------
gem 'airbrake' # Error reporting
gem 'browser' # Browser detection
gem 'email_veracity' # Email validation
gem 'execjs' # JS runtime
gem 'formtastic' # Form builder
gem 'geocoder', '1.3.7' # Geocoding (locked due to regression in 1.4)
gem 'gretel' # Breadcrumbs
gem 'json'
gem 'mail-logger'
gem 'mobvious' # Mobile device detection
gem 'newrelic_rpm' # Performance monitoring
gem 'nokogiri', '~> 1.15.0'
gem 'octokit' # GitHub API client
gem 'osgb', git: 'https://github.com/FreeUKGen/osgb.git'
gem 'psych', '~> 3.3.0'
gem 'rubyzip'
gem 'simple_form'
gem 'text'
gem 'traceroute' # Detect unused routes
gem 'tzinfo-data' # Required for Windows
gem 'unicode'
gem 'zip-zip'
# ------------------------------------------------------------
# Development & Test
# ------------------------------------------------------------
group :development, :test do
gem 'factory_bot_rails'
gem 'mongoid-rspec'
gem 'pry'
gem 'pry-byebug'
gem 'rspec-rails'
end
# ------------------------------------------------------------
# Development Only
# ------------------------------------------------------------
group :development do
gem "puma"
gem 'rubocop-rails'
end
# ------------------------------------------------------------
# Test Only
# ------------------------------------------------------------
group :test do
gem "capybara"
end
# Only load Gemfile.local if it exists
local_gemfile = File.join(__dir__, "Gemfile.local")
eval_gemfile(local_gemfile) if File.exist?(local_gemfile)