This repository has been archived by the owner on Jun 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
69 lines (50 loc) · 1.57 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Core
gem 'rails', '~> 5.0.1'
# Database
gem 'pg', '~> 0.18'
# Querying
gem 'ransack', '~> 1.8', '>= 1.8.2'
# Server
gem 'puma', '~> 3.0'
# Serialization
gem 'active_model_serializers', '~> 0.10.0'
# CORS
gem 'rack-cors', '~> 0.4.1', require: 'rack/cors'
# Authentication
gem 'jwt', '~> 1.5', '>= 1.5.4'
# Authorization
gem 'rolify', '~> 5.1'
gem 'pundit', '~> 1.1'
###############################################
# Development dependencies
###############################################
group :development, :test do
# Pry console
gem 'pry', '~> 0.10.4'
gem 'pry-rails', '~> 0.3.6'
# RSpec testing instead of Test::Unit
gem 'rspec-rails', '~> 3.6'
# Test factories and dummy data
gem 'factory_girl_rails', '~> 4.8'
# Guard
gem 'guard', '~> 2.14', require: false
gem 'guard-rspec', '~> 4.7', require: false
end
###############################################
# Test dependencies
###############################################
group :test do
# Active Model Serializer testing
gem 'shoulda-matchers', github: 'thoughtbot/shoulda-matchers', branch: 'rails-5'
# API auto documentation
gem 'rspec-apib', '~> 0.2.0'
# Time control
gem 'timecop', '~> 0.8.1'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]