-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
164 lines (97 loc) · 3.09 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "acts_as_list"
gem "apexcharts",
git: "https://github.com/styd/apexcharts.rb.git",
branch: :master
gem "babel-transpiler"
gem "bcrypt"
gem "best_in_place", git: "https://github.com/mmotherwell/best_in_place"
gem "bootsnap", ">=1.1.0", require: false
gem "cancancan"
gem "cocoon",
git: "https://github.com/vtamara/cocoon.git",
branch: "new_id_with_ajax" # Formularios anidados (algunos con ajax)
gem "coffee-rails" # CoffeeScript para recuersos .js.coffee y vistas
gem "color"
gem "devise" # Autenticación y roles
gem "devise-i18n"
gem "hotwire-rails"
gem "jbuilder" # API JSON facil. Ver: https://github.com/rails/jbuilder
gem "jsbundling-rails"
gem "kt-paperclip", # Anexos
git: "https://github.com/kreeti/kt-paperclip.git"
gem "libxml-ruby"
gem "odf-report" # Genera ODT
gem "nokogiri", ">=1.11.1"
gem "parslet"
gem "pg" # Postgresql
gem "prawn" # Generación de PDF
gem "prawnto_2", require: "prawnto"
gem "prawn-table"
gem "rack", "~> 2"
gem "rack-cors"
gem "rails", "~> 7.2"
# git: "https://github.com/rails/rails.git", branch: "6-1-stable"
gem "rails-i18n"
gem "redcarpet" # Markdown
gem "rspreadsheet" # Genera ODS
gem "rubyzip", ">= 2.0"
gem "sassc-rails" # Hojas de estilo con SCSS
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 (a diferencia de las anteriores gemas,
# estas ponerse en orden de apilamiento lógico y no alfabético).
gem "msip", # Motor generico
git: "https://gitlab.com/pasosdeJesus/msip.git", branch: "v2.2"
#path: "../msip-2.2"
gem "mr519_gen", # Motor de gestion de formularios y encuestas
git: "https://gitlab.com/pasosdeJesus/mr519_gen.git", branch: "v2.2"
#path: "../mr519_gen-2.2"
gem "heb412_gen", # Motor de nube y llenado de plantillas
git: "https://gitlab.com/pasosdeJesus/heb412_gen.git", branch: "v2.2"
#path: "../heb412_gen-2.2"
gem "sivel2_gen", # Motor para manejo de casos
git: "https://gitlab.com/pasosdeJesus/sivel2_gen.git", branch: "v2.2"
#path: "../sivel2_gen-2.2"
gem "cor1440_gen",
git: "https://gitlab.com/pasosdeJesus/cor1440_gen.git", branch: "v2.2"
#path: "../cor1440_gen-2.2"
gem "jos19",
git: "https://gitlab.com/pasosdeJesus/jos19.git", branch: "v2.2"
#path: "../jos19-2.2"
group :development, :test do
gem "brakeman"
gem "bundler-audit"
gem "code-scanning-rubocop"
gem "colorize"
gem "debug"
gem "dotenv-rails"
gem "rails-erd"
gem "rubocop-minitest"
gem "rubocop-rails"
gem "rubocop-shopify"
end
group :development do
gem "web-console"
end
group :test do
gem "capybara"
gem "connection_pool"
gem "cuprite"
gem "minitest", "~> 5.16"
gem "minitest-reporters"
gem "rails-controller-testing"
gem "simplecov"
gem "spork" # Un proceso para cada prueba -- acelera
end
group :production do
gem "unicorn" # Para despliegue
end