forked from etalab/rna_as_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (48 loc) · 1.14 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
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 'rails'
gem 'colorize'
gem 'interactor'
# Generate logs for elasticsearch
gem 'logstasher'
gem 'pg'
gem 'puma'
gem 'rack-cors'
gem 'ruby-progressbar'
gem 'rubyzip'
gem 'smarter_csv'
# Gem progress_bar required for displaying progress in rake sunspot:reindex
gem 'progress_bar'
# Sunspot / Solr friends
gem 'sunspot_rails'
gem 'sunspot_solr'
gem 'json'
gem 'whenever'
group :development, :test do
gem 'factory_bot_rails'
gem 'pry'
gem 'pry-byebug'
gem 'rspec-rails'
end
group :development do
gem 'listen'
gem 'mina'
gem 'mina-whenever'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'rubocop-checkstyle_formatter', require: false
gem 'rubocop-rspec', require: false
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen'
end
group :test do
gem 'fuubar'
gem 'simplecov'
gem 'simplecov-console'
gem 'timecop'
gem 'vcr'
gem 'webmock'
end