This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
69 lines (55 loc) · 1.46 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
source 'https://rubygems.org'
# https://github.com/bundler/bundler/issues/4978
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', '~> 5.2.2'
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'hirb'
gem 'jsonb_accessor'
gem 'pg'
gem 'puma'
gem 'font_awesome5_rails'
gem 'sassc-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'haml-rails'
gem 'redcarpet'
gem 'bootsnap', require: false
gem 'counter_culture'
# WARNING: when updating public_activity
# assert our patch works: models/concerns/public_activity
# and the specs: specs/models/concerns/public_activity
gem 'devise'
gem 'public_activity'
gem 'pundit'
gem 'state_machines-activerecord'
gem 'grape'
gem 'grape-entity', github: 'ruby-grape/grape-entity', branch: 'master'
group :development do
gem 'grape_on_rails_routes'
gem 'letter_opener'
gem 'seedbank'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'faker'
gem 'fix-db-schema-conflicts'
gem 'pry-byebug'
end
group :test do
gem 'database_cleaner'
gem 'guard-rspec'
gem 'pundit-matchers'
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'shoulda-matchers', github: 'thoughtbot/shoulda-matchers', branch: 'master'
gem 'state_machines-rspec'
gem 'capybara'
gem 'fakeredis'
gem 'launchy'
gem 'selenium-webdriver'
# check if the release is out yet https://github.com/thoughtbot/shoulda-matchers/milestone/13
end