-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (30 loc) · 1.01 KB
/
Copy pathGemfile
File metadata and controls
41 lines (30 loc) · 1.01 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
source 'https://rubygems.org'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use unicorn as the app server
gem 'unicorn'
gem 'execjs'
gem 'therubyracer'
# Use Capistrano for deployment
gem 'capistrano-rails', '~> 1.1.0'
gem 'capistrano-bundler'
gem 'capistrano-rbenv', '~> 2.0'
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'basechurch', github: 'openmcac/basechurch', branch: :master
gem 'rack-rewrite', '~> 1.5.0'
gem "settingslogic", "~> 2.0.8"
group :development do
gem 'knife-solo', '~> 0.4.2'
end
group :staging, :production do
gem 'pg'
end