-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Gemfile
136 lines (122 loc) · 3.19 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
ruby File.read(".ruby-version").strip
source 'https://rubygems.org'
gem 'rails','~> 5.2'
gem 'workflow', '~> 2.0'#, github: 'geekq/workflow'
gem 'workflow-activerecord', '>=4.1', '< 6.0'
# Using community gems because official support does not cover Rails 5
# Consider refactor not to use them or find alternatives.
# Gems hindering Rails 6 upgrade:
gem 'rocket_pants', git: 'https://github.com/parse/rocket_pants'
gem 'protected_attributes_continued'
#The `content_tag_for` method has been removed from Rails. To continue using it, add the `record_tag_helper` gem to your Gemfile:
gem 'record_tag_helper'
# Other Gem issues:
gem 'font-awesome-sass', '< 5' # https://fontawesome.com/how-to-use/on-the-web/setup/upgrading-from-version-4
gem 'active_model_serializers'
gem 'activeadmin'
gem 'acts-as-taggable-on'
gem 'ancestry'#, github: 'stefankroes/ancestry'
gem 'authority'#, github: 'nathanl/authority'
gem 'bitmask_attributes'
gem 'bootsnap'
gem 'bootstrap4-kaminari-views'
gem 'chartkick'
gem 'cocoon'
gem 'coderay'
gem 'countries', '~> 5', require: 'countries/global'
gem 'country_select', '~> 8.0'
gem 'dalli', '~> 3.2.3'
gem 'discourse_api'
gem 'doorkeeper', '~>5.6.0'
gem 'dotenv-rails'
gem 'dragonfly'#, '~> 1.1.1'
gem 'dragonfly-s3_data_store'
gem 'fast_jsonapi' # To support new v2 JSONAPI
gem 'flatpickr'
gem 'friendly_id'
gem 'groupdate' #used by chartkick
gem 'geocoder'
gem 'gibbon'
gem 'haml-rails'
gem 'hpricot'
gem 'http_accept_language'
gem 'inherited_resources'
gem 'invisible_captcha'
gem 'jbuilder'
gem 'jquery-rails'
gem 'kaminari'
gem 'letter_opener'
gem 'momentjs-rails' # Remove? It is already included with Chart.js bundle
gem 'nest'
gem 'paper_trail'
gem 'pg'
gem 'pg_search'
gem 'premailer-rails'
gem 'puma'
gem 'rack-attack'
gem 'rack-cache'
gem 'rack-cors', require: 'rack/cors'
gem 'ransack'
gem 'recaptcha'
gem 'redcarpet'
gem 'redis'
gem 'rolify'
gem 'rspec'
gem 'sass-rails'
gem 'coffee-rails', '~> 4.2.0'
gem 'sentry-ruby'
gem 'sentry-rails'
gem 'sidekiq', '< 7'
gem 'simplecov', :require => false, :group => :test
gem 'simple_form'
gem 'sitemap_generator'
gem 'slim'
gem 'sort_alphabetical'
gem 'sprockets'
gem 'sprockets-rails'
gem 'stamp'
gem 'timezone'#, '~> 1.0'
gem 'trumbowyg_rails'#, git: 'https://github.com/TikiTDO/trumbowyg_rails.git'
gem 'twitter'
gem 'uglifier'#, '>= 1.3.0'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '2.3.1', require: false
end
group :development do
gem 'listen' # explicitd added (when not installing test gems)
gem 'bullet' #, github: 'flyerhzm/bullet'
gem "i18n-tasks", "~> 0.9.33"
gem 'net-ssh'
gem 'web-console'
gem 'rack-mini-profiler'
end
group :test, :development do
gem 'byebug'
gem 'factory_bot_rails'
gem 'ffaker'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails'
end
group :test do
gem 'capybara', '~> 3.36.0'
gem 'guard-rspec'
gem 'launchy'
gem 'minitest'
gem 'pry'
gem 'pry-rescue'
gem 'pry-stack_explorer'
gem 'rails-controller-testing'
gem 'selenium-webdriver', '~> 3.0'
gem 'shoulda-matchers'
gem 'test-unit'
gem 'webmock'
gem 'zonebie'
end
# Use ActiveModel has_secure_password
gem 'bcrypt'
# gem 'foreman'
# gem 'unicorn'
# Use unicorn as the app server
# gem 'unicorn'