-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
155 lines (131 loc) · 3.94 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
source 'https://rubygems.org'
ruby File.open(File.expand_path(".ruby-version", File.dirname(__FILE__))) { |f| f.read.chomp }
git_source(:github) { |name| "https://github.com/#{name}.git" }
gem 'rails', '~> 7.0.8'
gem 'sprockets', '< 4' # Sprockets 4 pain is not worth it.
# Authentication
gem 'devise'
gem 'devise-i18n'
gem 'pundit'
gem 'rolify'
# Output reports
gem 'prawn'
gem 'matrix'
gem 'prawn-labels'
gem 'spreadsheet'
# ttfunk 1.8.0 has issues with embedded japanese fonts for BagLabels and Award Labels
# https://github.com/prawnpdf/ttfunk/issues/102
gem 'ttfunk', '1.7.0'
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary', '0.12.6.8'
# Front-end
gem "autoprefixer-rails"
gem 'breadcrumbs_on_rails'
gem 'cocoon' # for nested forms
gem 'countries'
gem 'country_select'
gem 'fancybox2-rails', github: 'sureswiftcapital/fancybox2-rails', branch: "rails6" # for rails 6 support
gem 'foundation-rails'
gem "haml-rails"
gem 'importmap-rails'
gem 'jquery-datatables-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails', '6.0.1'
gem 'money-rails'
gem 'rails-assets-datetimepicker', '2.5.20', source: 'https://rails-assets.org'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'select2-rails'
gem 'simple_form'
gem 'stimulus-rails'
gem 'tinymce-rails'
gem "validates_timeliness", "7.0.0.beta2" # for Ruby 3 support
# system utils
gem 'acme-client'
gem 'apartment_acme_client'
gem 'aws-sdk-rails'
gem 'dotenv-rails'
gem 'eye'
gem 'gaffe'
gem 'hcaptcha'
gem 'http_accept_language'
gem 'order_as_specified'
gem 'paper_trail'
gem 'rails_admin', '< 4'
gem 'rake'
gem 'redis'
gem 'request_store' # Supports EventConfiguration.singleton
gem 'rollbar'
gem 'rubyzip'
gem 'sassc-rails' # needed by rails_admin
gem 'sidekiq', '< 8' # as per sidekiq recommendations, always lock like this
gem 'stripe'
gem 'unicorn', require: false
gem 'webrick'
gem 'whenever'
# I18n Translation
# use rdunlop branch which has:
# fixed the Pagination-Load issue
# specific import/export functions to match the translation-file structure used
# also, the released version of tolk does not yet support rails 5. (need to use `master`)
gem 'kaminari'
gem 'rails-i18n'
gem 'tolk', github: 'rdunlop/tolk', branch: 'improve_import_export'
# multi-tenancy
gem 'pry-rails' # required for apartment console customization
gem 'ros-apartment', require: 'apartment', github: 'rails-on-services/apartment', branch: 'development' # github version until version > 2.11.0 is released with Rails 7.1 support
gem 'ros-apartment-sidekiq', require: 'apartment-sidekiq'
# Model utils
gem 'acts_as_list'
gem 'carrierwave'
gem 'carrierwave-aws', '1.6.0'
gem 'carrierwave-i18n'
gem 'globalize', github: 'globalize/globalize', branch: 'main'
gem 'nilify_blanks'
gem 'validates_email_format_of'
gem 'virtus'
gem "wicked"
gem 'faker' # to support 'sample_data'
gem 'pg'
# deployment
gem 'capistrano', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-rvm', require: false
group :naucc, :development, :caching do
gem 'consistency_fail'
end
group :test do
gem 'capybara'
gem 'codeclimate_circle_ci_coverage'
gem 'database_cleaner'
gem 'poltergeist'
gem 'rspec_junit_formatter' # per circleCI https://circleci.com/docs/test-metadata
gem 'rspec-rails'
gem "shoulda-matchers", require: false
gem 'rspec-instafail', require: false
end
group :development, :test do
gem 'bundler-audit', require: false
gem 'factory_bot_rails'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'teaspoon-jasmine'
end
group :unicon, :naucc, :development, :test, :cucumber, :caching do
gem 'annotate'
gem 'bullet'
# gem 'brakeman'
gem 'foreman'
gem 'pry'
gem 'watchr'
end
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails'
gem 'uglifier', '>= 1.0.3'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'