-
Notifications
You must be signed in to change notification settings - Fork 14
/
Gemfile
33 lines (28 loc) · 953 Bytes
/
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
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
gem 'jsonapi-rails'
gem 'json_api_responders', github: 'infinum/json_api_responders', branch: 'feature/jsonapi-rails-support'
gem 'puma', '~> 3.0'
gem 'rails', '5.0.2'
gem 'sqlite3'
group :development, :test do
gem 'apiaryio', '0.7.0', git: 'https://github.com/infinum/apiary-client.git'
gem 'byebug', platform: :mri
gem 'pry-rails'
end
group :development do
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
end
group :test do
gem 'dox', require: false
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'shoulda-matchers', git: 'https://github.com/thoughtbot/shoulda-matchers.git', branch: 'rails-5'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]