-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (35 loc) · 705 Bytes
/
Gemfile
File metadata and controls
43 lines (35 loc) · 705 Bytes
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
source 'http://rubygems.org'
ruby '2.3.0'
# gems for internal operations
gem 'thin'
gem 'sinatra'
gem 'sinatra-contrib'
gem 'virtus'
gem 'hirb'
# Product
gem 'secondHandler'
gem 'shopee'
gem 'fuzzy-string-match'
gem 'json'
gem 'httparty'
gem 'activesupport'
gem 'concurrent-ruby-ext'
# gems requiring credentials for 3rd party services
gem 'config_env'
gem 'aws-sdk', '~> 2' # DynamoDB (Dynamoid), SQS Message Queue
gem 'dynamoid', '~> 1'
gem 'dalli' # Memcachier
## mail
gem 'mailgun-ruby', '~>1.0.3', require: 'mailgun'
gem 'slim'
group :test do
gem 'minitest'
gem 'rack'
gem 'rack-test'
gem 'rake'
gem 'vcr'
gem 'webmock'
end
group :development do
gem 'tux'
end