-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
31 lines (25 loc) · 722 Bytes
/
Gemfile
File metadata and controls
31 lines (25 loc) · 722 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
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'sqlite3'
gem 'puma', '~> 3.0'
gem 'jsonapi_suite', '~> 0.5'
gem 'jsonapi-rails', '~> 0.1'
gem 'kaminari', '~> 0.17'
gem 'jsonapi-serializable',
git: 'https://github.com/jsonapi-rb/jsonapi-serializable.git',
branch: 'optim-1'
group :development, :test do
gem 'pry'
gem 'pry-byebug', platform: :mri
gem 'rspec-rails', '~> 3.5'
end
group :test do
gem 'database_cleaner', '~> 1.5'
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]