This repository has been archived by the owner on Apr 27, 2022. It is now read-only.
forked from fsek/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
99 lines (92 loc) · 2.54 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
source 'https://rubygems.org'
# Do not forget to update in .ruby-version, Capfile and circle.yml
ruby '2.5.0'
gem 'rails', '5.1.6.2'
gem 'active_model_serializers', '~> 0.10.0'
gem 'bcrypt_pbkdf', '~> 1.1.0.rc1'
gem 'bootstrap-sass'
gem 'bootstrap-datepicker-rails'
gem 'cancancan'
gem 'carrierwave', '~> 0.11.2'
gem 'carrierwave_backgrounder', git: 'https://github.com/lardawge/carrierwave_backgrounder'
gem 'cookies_eu'
gem 'datetimepicker-rails', git: 'https://github.com/zpaulovics/datetimepicker-rails',
branch: 'master',
submodules: true
gem 'devise', '~> 4.7.1'
gem 'devise_token_auth', '~> 1.1.3'
gem 'ed25519', '~> 1.2', '>= 1.2.4'
gem 'ejs'
gem 'font-awesome-sass', '~> 5.6.1'
gem 'fotoramajs'
gem 'fullcalendar-rails'
gem 'globalize', git: 'https://github.com/globalize/globalize' # For rails 5.1 support
gem 'activemodel-serializers-xml'
gem 'globalize-accessors'
gem 'icalendar'
gem 'jquery-rails'
gem 'jquery-turbolinks'
gem 'jquery-ui-rails'
gem 'kaminari'
gem 'meta-tags'
gem 'mail', '>= 2.6.6.rc1'
gem 'mini_magick'
gem 'momentjs-rails'
gem 'nokogiri', '>=1.7'
gem 'pg'
gem 'paperclip', '>= 5.2.0'
gem 'pagedown-bootstrap-rails'
gem 'paranoia'
gem 'prawn-rails'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'redcarpet'
gem 'redis', '< 4'
gem 'roadie-rails', '~> 1.3'
gem 'rollbar'
gem 'rpush'
gem 'routing-filter', '~> 0.6.2'
gem 'sassc-rails'
gem 'select2-rails'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'sidekiq-unique-jobs'
gem 'simple_form'
gem 'sitemap_generator'
gem 'turbolinks'
gem 'uglifier'
gem 'wice_grid', git: 'https://github.com/navro/wice_grid', branch: 'rails51'
# To have a working JVM on server
group :staging, :production do
gem 'therubyracer', platform: :ruby
end
group :development, :test do
gem 'better_errors', git: 'https://github.com/charliesome/better_errors' # For rails 5 support
gem 'capistrano', require: false
# Need 1.1.3 to load sprockets manifest file
gem 'capistrano-rails', require: false
gem 'capistrano-rbenv', require: false
gem 'capistrano-passenger', require: false
gem 'capybara'
gem 'factory_bot_rails'
gem 'dotenv-rails'
gem 'listen'
gem 'poltergeist'
gem 'pry-byebug'
gem 'pry-rails'
gem 'puma'
gem 'rspec-example_steps'
gem 'rspec-rails'
end
group :development do
gem 'bullet'
gem 'foreman'
gem 'onesky-rails'
gem 'web-console'
end
group :test do
gem 'codeclimate-test-reporter', require: false
gem 'database_cleaner'
gem 'shoulda-matchers', require: false
gem 'rails-controller-testing'
gem 'rspec_junit_formatter'
end