-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (33 loc) · 964 Bytes
/
Gemfile
File metadata and controls
37 lines (33 loc) · 964 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
ruby '2.3.3'
source 'https://rubygems.org'
gem 'thin', '1.7.0'
gem 'rack', '1.6.4'
gem 'rerun', '0.11.0'
gem 'rake', '11.2.2'
gem 'grape', '0.18.0' # api routing
gem 'grape-batch', '2.3.0'
gem 'grape-entity', '0.6.0' # define api input and output
gem 'grape-swagger', '0.25.1' # document api
gem 'grape-swagger-entity', '0.1.5' # parse entities in api
gem 'rack-indifferent', '1.1' # makes param keys symbols
gem 'mysql2', '0.4.5'
gem 'sequel', '4.40.0'
gem 'mail', '2.6.4'
gem 'uuidtools', ' 2.1.5'
gem 'hanami-validations', '0.6.0' # form validation
gem 'dry-validation', '0.10.4' # validation methods for reform
gem 'ability_list', '0.0.4'
gem 'activesupport', '5.0.0'
group :development, :test do
gem 'awesome_print', '1.7.0'
gem 'pry', '0.10.4'
end
group :test do
gem 'webmock', '2.1.0'
gem 'vcr', '3.0.3'
gem 'database_cleaner', '1.5.3'
gem 'factory_girl', '4.7.0'
gem 'faker', '1.6.6'
gem 'rack-test', '0.6.3'
gem 'rspec', '3.5.0'
end