-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
57 lines (47 loc) · 1.44 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
source "https://rubygems.org"
# Frameworks
gem "grape", "~> 0.17.0"
gem "grape-rabl", "~> 0.4.1"
gem "grape-kaminari", "~> 0.1.8"
gem "grape_logging", '~> 1.3.0'
gem "sinatra", "~> 1.4.6"
gem "kramdown", "~> 1.9.0"
# Security
gem "rack_csrf", "~> 2.5.0"
gem "rack-cors", :require => "rack/cors"
gem "dotenv", "~> 2.1.0"
gem 'ed25519'
gem 'bcrypt_pbkdf'
# Database
gem "pg", "~> 0.18.4"
gem "activerecord", "~> 4.2.5"
gem "active_record_migrations", "~> 4.2.5.1.1", require: false
gem "activerecord-postgis-adapter", "~> 3.1.3"
# Notifications
gem "pony", "~> 1.11"
gem "slack-notifier", "~> 1.5.1"
gem "exception_notification", "~> 4.1.4"
# Analytics
gem "appsignal", "~> 1.1.0.beta.5"
# Support
gem "rake", "~> 10.5.0"
gem "activesupport", "~> 4.2.5"
# gem 'puma', '5.6.6' - https://github.com/unepwcmc/protectedplanet-api/pull/58
# Testing
group :test, :development do
gem "minitest"
gem "minitest-around", "~> 0.3.2"
gem "database_cleaner", "~> 1.5.1"
gem "factory_girl", "~> 4.0"
gem "rack-test", "~> 0.6.3"
end
# Deploy
group :development do
gem 'capistrano', '~> 3.16.0', require: false
gem 'capistrano-bundler', '~> 2.0.1', require: false
gem 'capistrano-rvm', '~> 0.1.2', require: false
gem 'capistrano-maintenance', '~> 1.0', require: false
gem 'capistrano-passenger', '~> 0.2.1', require: false
# gem 'capistrano3-puma', '~> 5.2', require: false - https://github.com/unepwcmc/protectedplanet-api/pull/58
gem 'byebug', '~> 3.1.2'
end