-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
102 lines (84 loc) · 2.8 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '~> 7.0'
gem 'pg' # postgres adapter
gem 'bcrypt' # password hashs
gem 'sprockets-rails' # asset pipeline
gem 'puma' # dev web server
gem 'cancancan' # abilities
gem 'carrierwave', '> 3.0.0' # uploads
gem 'mini_magick' # image processing
gem 'responders' # set of responders
gem 'simple_form' # more form support
gem 'm3', path: 'm3' # old lichtbit stuff
gem 'matrix'
gem 'acts_as_list' # position of models
gem 'bootsnap', require: false # Reduces boot times through caching; required in config/boot.rb
# # background jobs
gem 'daemons' # background jobs
gem 'delayed_job_active_record' # background jobs
gem 'whenever' # cronjobs
# # templating
gem 'haml-rails' # haml templating
gem 'redcarpet' # markdown
gem 'firesport', path: 'firesport'
gem 'firesport-series', path: 'firesport-series'
# assets
gem 'jquery-rails' # jquery js
gem 'terser' # asset compressor
gem 'coffee-rails' # coffee script
gem 'cocoon' # nested_form helper
gem 'lazy_high_charts' # charts
gem 'image_optim' # image optimazing
gem 'image_optim_pack' # image optimazing binaries
gem 'bootstrap-sass' # bootstrap with sass support
gem 'sassc-rails' # sass for rails
gem 'turbo-rails' # hot wire links
gem 'will_paginate-bootstrap' # pagination with bootstrap layout
# exports
gem 'active_model_serializers' # model serializer
gem 'prawn-rails' # pdf export
gem 'rqrcode' # pdf/png qr code
gem 'caxlsx_rails' # xlsx exports
gem 'draper' # model decorators
# validation
gem 'activerecord_views' # save db views in code
gem 'generated_schema_validations' # validate models by schema
gem 'valid_email2' # validate emails
gem 'mutex_m' # remove on Rails 7.2
gem 'drb' # remove on Rails 7.2
gem 'base64' # remove on Rails 7.2
group :production do
gem 'unicorn'
gem 'rails_log_parser'
end
group :development, :test do
gem 'debug' # debugger
# code beautifier
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'rubocop-factory_bot'
gem 'rubocop-capybara'
end
group :development do
gem 'spring'
gem 'web-console'
gem 'm3_capistrano3', git: '[email protected]:lichtbit/m3_capistrano3.git'
gem 'capistrano-rsync-plugin', git: 'https://github.com/Lichtbit/capistrano-rsync-plugin'
end
group :test do
gem 'rspec-rails' # rspec for rails
gem 'simplecov', require: false # test coverage
gem 'timecop' # hold specific time
gem 'vcr' # record http requests
gem 'webmock' # mock http requests
gem 'cuprite' # headless chrome driver for capybara
gem 'guard', require: false # on demand tests
gem 'guard-rspec', require: false # on demand tests
gem 'factory_bot_rails' # factories for models
gem 'database_cleaner-active_record' # cleaning strategies for specs
gem 'capybara' # feature test helper
end