-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
98 lines (54 loc) · 1.7 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gemspec
gem 'babel-transpiler'
gem "bcrypt"
gem 'bigdecimal'
gem 'bootsnap', '>=1.1.0', require: false # Arranque rapido
gem "cancancan" # Roles
gem 'coffee-rails', '~> 4.2'
gem "cocoon", git: "https://github.com/vtamara/cocoon.git",
branch: 'new_id_with_ajax' # Formularios anidados (algunos con ajax)
gem "devise" # Autenticación
gem "devise-i18n"
gem 'jbuilder', '~> 2.5'
gem 'jsbundling-rails'
gem 'kt-paperclip', # Anexos
git: 'https://github.com/kreeti/kt-paperclip.git'
gem 'net-ldap'
gem 'nokogiri', '>=1.11.1'
gem 'pg'
gem 'rails', '~> 7.0'
#git: 'https://github.com/rails/rails.git', branch: '6-1-stable'
gem 'sassc-rails'
gem "simple_form" # Formularios simples
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'turbo-rails', '~> 1.0'
gem 'twitter_cldr' # ICU con CLDR
gem "tzinfo" # Zonas horarias
gem "will_paginate" # Listados en páginas
#####
# Motores que se sobrecargan vistas (deben ponerse en orden de apilamiento
# lógico y no alfabetico como las gemas anteriores)
gem 'sip', # Motor generico
git: 'https://github.com/pasosdeJesus/sip.git', branch: :main
#path: '../sip'
group :development, :test do
gem 'debug'
gem 'colorize'
gem 'dotenv-rails'
end
group :test do
gem 'cuprite'
gem 'rails-controller-testing'
# Problemas con 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', '~> 0.10', '< 0.18'
end
group :development do
gem 'puma'
gem 'spring'
gem 'web-console'
end