forked from AlchemyCMS/alchemy-cms.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (37 loc) · 1021 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
source 'https://rubygems.org'
gem 'rails', '~> 5.2.2'
gem 'pg', '~> 1.0'
'4.3-stable'.tap do |branch|
gem 'alchemy_cms', git: 'https://github.com/AlchemyCMS/alchemy_cms', branch: branch
gem 'alchemy-devise', git: 'https://github.com/AlchemyCMS/alchemy-devise', branch: branch
end
gem 'newrelic_rpm'
gem 'kramdown', '~> 1.4.1'
# assets
gem 'sassc-rails', '~> 1.3'
gem 'coffee-rails', '~> 4.2'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails', '~> 4.0'
gem 'autoprefixer-rails'
gem 'zurb-foundation', '~> 4.3.2'
gem 'dotenv-rails', '~> 0.11'
gem 'sprockets', '< 4'
# caching
gem 'rack-cache', require: 'rack/cache'
group :development do
gem 'pry'
gem 'capistrano', '3.6.1'
gem 'capistrano-alchemy', '~> 1.0', require: false
gem 'capistrano-maintenance', require: false
gem 'capistrano-passenger', require: false
gem 'thin'
gem 'spring'
gem 'web-console'
gem 'listen'
gem 'letter_opener'
end
group :production do
gem 'mini_racer'
end
gem "bugsnag", "~> 6.8"
gem "rack-attack", "~> 5.4"