-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
80 lines (46 loc) · 1.51 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gemspec
gem 'babel-transpiler'
gem 'cancancan'
gem 'cocoon', git: 'https://github.com/vtamara/cocoon.git', branch: 'new_id_with_ajax' # Formularios anidados (algunos con ajax)
gem 'coffee-rails'
gem 'devise' # Autenticación
gem 'devise-i18n'
gem 'jsbundling-rails'
gem 'kt-paperclip', # Anexos
git: 'https://github.com/kreeti/kt-paperclip.git'
gem 'nokogiri', '>=1.11.1'
gem 'rails', '~> 7.1'
#git: 'https://github.com/rails/rails.git', branch: '6-1-stable'
gem 'rails-i18n'
gem 'sassc-rails'
gem 'simple_form' # Formularios
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'turbo-rails', '~> 1.0'
gem 'twitter_cldr' # Localiación e internacionalización
gem 'will_paginate' # Pagina listados
#####
# Motores que se sobrecargan vistas (deben ponerse en orden de apilamiento
# lógico y no alfabetico como las gemas anteriores)
gem 'msip', # Motor generico
git: 'https://gitlab.com/pasosdeJesus/msip.git', branch: 'main'
#path: '../msip'
group :development do
gem 'puma'
gem 'web-console'
end
group :development, :test do
gem 'debug'
gem 'colorize'
gem 'dotenv-rails'
end
group :test do
gem 'cuprite'
gem "minitest"
# Problemas con simplecov 0.18 que en travis genera:
# Error: json: cannot unmarshal object into Go struct field input.coverage of type []formatters.NullInt
# https://github.com/codeclimate/test-reporter/issues/418
gem 'simplecov'
end