forked from jsonapi-suite/jsonapi_suite_sample_app
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (24 loc) · 716 Bytes
/
Gemfile
File metadata and controls
29 lines (24 loc) · 716 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
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'sqlite3'
gem 'puma', '~> 3.0'
gem 'jsonapi_suite', '~> 0.1'
gem 'kaminari', '~> 0.17'
gem 'active_model_serializers',
git: 'https://github.com/richmolj/active_model_serializers.git',
branch: 'include_data_if_sideloaded'
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]