-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
50 lines (39 loc) · 1.17 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '~> 6.1'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 6.4'
gem 'panoptes-client'
gem 'pundit'
# Connect to Azure Storage with Rails Active Storage
gem 'azure-storage'
gem 'azure-storage-blob'
gem 'rubyzip', '~> 2.3.0'
# jsonapi.rb is a bundle that incorporates fast_jsonapi (serialization),
# ransack (filtration), and some RSpec matchers along with some
# boilerplate for pagination and error handling
# https://github.com/stas/jsonapi.rb
gem 'jsonapi.rb'
# gem 'redis', '~> 4.0'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'rack-cors'
gem 'sentry-raven'
group :development, :test do
gem 'coveralls', '~>0.8.23', :require => false
gem 'rspec-rails'
gem 'factory_bot_rails'
gem 'jsonapi-rspec', require: false
gem 'pry-byebug'
gem 'pry-rails'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.8'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'simplecov'
gem 'pundit-matchers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]