-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
122 lines (90 loc) · 3.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
source 'https://rubygems.org'
# Core gems
gem 'rails', '4.2.7.1'
# Database
gem 'pg', '~> 0.18'
# Redis
gem 'redis-namespace', '~> 1.5', '>= 1.5.2'
# Server
gem 'puma', '~> 3.2.0'
# CORS
gem 'rack-cors', '~> 0.4.0'
# API Versioning
gem 'versionist', '~> 1.4.1'
# API error messages
gem 'rails_api_validation_errors', '~> 1.0', '>= 1.0.1'
# Filtering
gem 'ransack', '~> 1.7'
gem 'postgres_ext', '~> 3.0'
# Globalization
gem 'globalize', '~> 5.0.0'
# Authentication / Authorization
gem 'bcrypt', '~> 3.1', '>= 3.1.11'
gem 'pundit', '~> 1.1.0'
gem 'pundit_namespaces', '~> 0.1.1'
gem 'doorkeeper', '~> 4.2.0'
gem 'strong_password', '~> 0.0.5'
# Order number generation
gem 'ar-tokens', '~> 0.0.6'
# Serialization
gem 'active_model_serializers', '~> 0.10.2'
gem 'active_model_serializers-jsonapi_embedded_records_deserializer', '0.1.1'
# Validations
gem 'email_validator', '~> 1.6'
gem 'phonelib', '~> 0.6.1'
gem 'global_phone', github: 'sstephenson/global_phone',
ref: 'dd089406'
# Automation
gem 'sidekiq', '~> 4.1', '>= 4.1.2'
gem 'sidekiq-scheduler', '~> 2.0', '>= 2.0.6'
gem 'sinatra', :require => nil
# Bot detection
gem 'recaptcha', '~> 1.3'
# Geocoding
gem 'geocoder', '~> 1.3'
# Attachments
gem 'carrierwave', github: 'carrierwaveuploader/carrierwave',
ref: '8ceadb7f'
gem 'rmagick', '~> 2.15', '>= 2.15.4'
# SMS
gem 'nexmo', '~> 4.1'
# Exception tracking
gem 'sentry-raven'
# UUID
gem 'uuid'
###############################################
# Development dependencies
###############################################
group :development, :test do
# Pry console
gem 'pry', '~> 0.10.3'
gem 'pry-rails', '~> 0.3.4'
gem 'pry-stack_explorer', '~> 0.4.9.2'
gem 'pry-remote', '~> 0.1.8'
# Console formatting
gem 'awesome_print', '~> 1.6.1'
# RSpec testing instead of Test::Unit
gem 'rspec-rails', '~> 3.4.0'
gem 'rspec-apib', '~> 0.1.0'
# Test factories and dummy data
gem 'factory_girl_rails', '~> 4.5.0'
gem 'ffaker', '~> 2.1.0'
# Time testing
gem 'timecop', '~> 0.8.1'
# Guard
gem 'guard', '~> 2.13.0', require: false
gem 'guard-rspec', '~> 4.6.4', require: false
# Documentation
gem 'apiaryio', require: false
end
###############################################
# Test dependencies
###############################################
group :test do
# Active Model Serializer testing
gem 'shoulda-matchers', '~> 3.0.1', require: false
# JSON testing
gem 'json_spec', '~> 1.1.4'
# Coverage
gem 'codeclimate-test-reporter', '~> 0.6.0'
end