forked from openSUSE/software-o-o
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (44 loc) · 1.05 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
source 'https://rubygems.org'
gem 'nokogiri'
gem 'rails', '~> 5.2'
# Use SCSS for stylesheets
gem 'sass-rails'
# With compass
gem 'compass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
# gem 'coffee-rails', '~> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'fast_gettext', '>= 0.7.0'
gem 'gettext_i18n_rails', '>= 0.4.3'
# rails-i18n provides translations for ActiveRecord
# validation error messages
gem 'rails-i18n'
gem 'dalli'
gem 'hashie'
gem 'mini_magick'
gem 'minitest'
gem 'xmlhash', '>= 1.2.2'
# needed to collect translatable strings
# not needed at production
group :development do
# no need to load the gem via require
# we only need the rake tasks
gem 'gettext', '>= 1.9.3', require: false
end
group :production do
gem 'puma'
end
group :test do
gem 'capybara'
gem 'faker'
gem 'geckodriver-helper'
gem 'rubocop', "~> 0.49.0"
gem 'selenium-webdriver'
gem 'webmock'
end
# Debugging gems
gem 'rbtrace', require: false