-
Notifications
You must be signed in to change notification settings - Fork 29
/
Gemfile
111 lines (86 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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 'rack-cors'
gem 'rails', '~> 5.0.7.2'
gem 'listen', '~> 3.0.5'
gem 'pg', '~> 0.20'
# RDBM Agnostic connection pool manager
gem 'connection_pool', '~> 2.2'
# Backend jobs
gem 'redis', '~> 3.0'
gem 'redis-namespace'
gem 'redis-objects'
gem 'resque'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'sinatra', '~> 2.0.2'
# Sunspot / Solr friends
gem 'sunspot_rails'
gem 'sunspot_solr'
# Serializer
gem 'active_model_serializers', '~> 0.10.0'
# Import of data files
gem 'activerecord-import'
gem 'smarter_csv', git: 'https://github.com/tilo/smarter_csv.git', ref: '2b71026'
gem 'ruby-progressbar'
# Gem progress_bar required for displaying progress in rake sunspot:reindex
gem 'progress_bar'
# Loader in terminal for heavy tasks
gem 'whirly'
# use `ap var` for awesome print
gem 'awesome_print'
# Generate logs for elasticsearch
gem 'logstasher'
# Interactors
gem 'interactor', '~> 3.0'
gem 'interactor-rails', '~> 2.0'
# Trailblazer
gem 'trailblazer', '2.1.0.rc1'
gem 'trailblazer-activity', '0.7.1'
gem 'trailblazer-operation', '0.4.1'
gem 'trailblazer-rails'
# Map incoming requests to scopes
gem 'has_scope'
# Pagination
gem 'pagy'
gem 'sitemap_generator'
group :development, :test do
gem 'byebug', platform: :mri
gem 'colorize'
gem 'pry'
gem 'pry-byebug'
gem 'rspec-activejob'
gem 'rspec-collection_matchers'
gem 'rspec-its'
gem 'rspec-rails', '~> 3.5'
gem 'shoulda-matchers'
gem 'guard'
gem 'guard-rails', require: false
gem 'guard-rspec', require: false
# factory_bot used for populating test database
gem 'factory_bot_rails'
gem 'growl'
end
group :test do
gem 'fuubar'
gem 'simplecov'
gem 'simplecov-console'
gem 'timecop'
gem 'unindent'
gem 'vcr'
gem 'webmock'
end
group :development do
gem 'brakeman', require: false
gem 'mina'
gem 'rails_best_practices'
gem 'rubocop-checkstyle_formatter', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.0.0'
end