-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
52 lines (43 loc) · 948 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
49
50
51
52
source 'https://rubygems.org' do
# Puma with Ruby 2.6 running on 64bit Amazon Linux/2.11.7
ruby '2.6.6'
gem 'puma'
gem 'rake'
# api
gem 'grape'
gem 'grape_logging'
gem 'actionview', '>= 5.0.7.2'
gem 'active_model_serializers'
# database/orms
gem 'pg'
gem 'otr-activerecord'
gem 'activerecord-postgis-adapter', '>= 5.2.2'
# data pipeline
gem 'aws-sdk-sns', '~> 1'
gem 'aws-sdk-sqs', '~> 1'
gem 'aws-sdk-s3', '~> 1'
gem 'elasticsearch', '~> 5.0'
gem 'dotenv'
gem 'newrelic_rpm'
gem 'rison'
gem 'thor'
gem 'faraday'
# elasticbeanstalk rake task
gem 'aws-sdk-elasticbeanstalk'
group :development do
gem 'rerun'
end
group :test do
gem 'database_cleaner'
gem 'rack-test'
gem 'rspec'
gem 'rspec-json_matcher'
gem 'rspec_junit_formatter'
gem 'shoulda-matchers'
end
group :development, :test do
gem 'annotate'
gem 'factory_bot'
gem 'pry'
end
end