forked from postalserver/postal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (46 loc) · 1014 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
source 'https://rubygems.org'
gem 'rails', '= 5.0.2'
gem 'mysql2', '>= 0.3.18', '< 0.5'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'haml'
gem 'nifty-utils'
gem 'nilify_blanks'
gem 'kaminari'
gem 'bcrypt'
gem 'foreman'
gem 'hashie'
gem 'authie', '~> 3.0'
gem 'dynamic_form'
gem 'changey'
gem 'mail'
gem 'autoprefixer-rails'
gem 'bunny', '~> 2.5.1'
gem 'secure_headers'
gem 'chronic'
gem 'basic_ssl'
gem 'clockwork'
gem 'encrypto_signo'
gem 'nio4r'
gem 'mongo'
gem 'sentry-raven'
gem 'gelf'
gem 'moonrope', :git => 'https://github.com/adamcooke/moonrope', :branch => 'master'
gem 'jwt'
gem 'createsend', '~> 4.0'
gem 'acme-client', :git => 'https://github.com/unixcharles/acme-client'
gem 'highline', :require => true
group :development, :test do
gem 'byebug'
end
group :development do
gem 'annotate'
gem 'rspec'
gem 'rspec-rails'
gem "factory_girl_rails", "~> 4.0"
gem "database_cleaner"
end