Skip to content

Commit

Permalink
Actualiza
Browse files Browse the repository at this point in the history
  • Loading branch information
vtamara committed Oct 9, 2023
1 parent 9fe32e5 commit 91c1b14
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 109 deletions.
142 changes: 71 additions & 71 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,146 +1,146 @@
source 'https://rubygems.org'
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gem 'acts_as_list'
gem "acts_as_list"

gem 'apexcharts',
git: 'https://github.com/vtamara/apexcharts.rb.git', branch: :master
gem "apexcharts",
git: "https://github.com/vtamara/apexcharts.rb.git", branch: :master

gem 'babel-transpiler'
gem "babel-transpiler"

gem 'bcrypt'
gem "bcrypt"

gem "best_in_place", git: "https://github.com/mmotherwell/best_in_place"

gem 'bootsnap', '>=1.1.0', require: false
gem "bootsnap", ">=1.1.0", require: false

gem 'cancancan'
gem "cancancan"

gem 'cocoon', git: 'https://github.com/vtamara/cocoon.git',
branch: 'new_id_with_ajax' # Formularios anidados (algunos con ajax)
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 "coffee-rails" # CoffeeScript para recuersos .js.coffee y vistas

gem 'color'
gem "color"

gem 'devise' # Autenticación y roles
gem "devise" # Autenticación y roles

gem 'devise-i18n'
gem "devise-i18n"

gem 'hotwire-rails'
gem "hotwire-rails"

gem 'jbuilder' # API JSON facil. Ver: https://github.com/rails/jbuilder
gem "jbuilder" # API JSON facil. Ver: https://github.com/rails/jbuilder

gem 'jsbundling-rails'
gem "jsbundling-rails"

gem 'kt-paperclip', # Anexos
git: 'https://github.com/kreeti/kt-paperclip.git'
gem "kt-paperclip", # Anexos
git: "https://github.com/kreeti/kt-paperclip.git"

gem 'libxml-ruby'
gem "libxml-ruby"

gem 'odf-report' # Genera ODT
gem "odf-report" # Genera ODT

gem 'nokogiri', '>=1.11.1'
gem "nokogiri", ">=1.11.1"

gem 'pg' # Postgresql
gem "pg" # Postgresql

gem 'prawn' # Generación de PDF
gem "prawn" # Generación de PDF

gem 'prawnto_2', :require => 'prawnto'
gem "prawnto_2", :require => "prawnto"

gem 'prawn-table'
gem "prawn-table"

gem 'rack'
gem "rack"

gem 'rack-cors'
gem "rack-cors"

gem 'rails', '~> 7.0'
#git: 'https://github.com/rails/rails.git', branch: '6-1-stable'
gem "rails", ">= 7.0", "< 7.1"
#git: "https://github.com/rails/rails.git", branch: "6-1-stable"

gem 'rails-i18n'
gem "rails-i18n"

gem 'redcarpet' # Markdown
gem "redcarpet" # Markdown

gem 'rspreadsheet' # Genera ODS
gem "rspreadsheet" # Genera ODS

gem 'rubyzip', '>= 2.0'
gem "rubyzip", ">= 2.0"

gem 'sassc-rails' # Hojas de estilo con SCSS
gem "sassc-rails" # Hojas de estilo con SCSS

gem 'simple_form' # Formularios simples
gem "simple_form" # Formularios simples

gem 'sprockets-rails'
gem "sprockets-rails"

gem 'stimulus-rails'
gem "stimulus-rails"

gem 'turbo-rails', '~> 1.0'
gem "turbo-rails", "~> 1.0"

gem 'twitter_cldr' # ICU con CLDR
gem "twitter_cldr" # ICU con CLDR

gem 'tzinfo' # Zonas horarias
gem "tzinfo" # Zonas horarias

gem 'will_paginate' # Listados en páginas
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: 'main'
#path: '../msip'
gem "msip", # Motor generico
git: "https://gitlab.com/pasosdeJesus/msip.git", branch: "main"
#path: "../msip"

gem 'mr519_gen', # Motor de gestion de formularios y encuestas
git: 'https://gitlab.com/pasosdeJesus/mr519_gen.git', branch: 'main'
#path: '../mr519_gen'
gem "mr519_gen", # Motor de gestion de formularios y encuestas
git: "https://gitlab.com/pasosdeJesus/mr519_gen.git", branch: "main"
#path: "../mr519_gen"

gem 'heb412_gen', # Motor de nube y llenado de plantillas
git: 'https://gitlab.com/pasosdeJesus/heb412_gen.git', branch: 'main'
#path: '../heb412_gen'
gem "heb412_gen", # Motor de nube y llenado de plantillas
git: "https://gitlab.com/pasosdeJesus/heb412_gen.git", branch: "main"
#path: "../heb412_gen"

gem 'sivel2_gen', # Motor para manejo de casos
git: 'https://gitlab.com/pasosdeJesus/sivel2_gen.git', branch: 'main'
#path: '../sivel2_gen'
gem "sivel2_gen", # Motor para manejo de casos
git: "https://gitlab.com/pasosdeJesus/sivel2_gen.git", branch: "main"
#path: "../sivel2_gen"

gem 'apo214', # Motor para manejo de casos
git: 'https://gitlab.com/pasosdeJesus/apo214.git', branch: 'main'
#path: '../apo214'
gem "apo214", # Motor para manejo de casos
git: "https://gitlab.com/pasosdeJesus/apo214.git", branch: "main"
#path: "../apo214"

group :development, :test do
gem 'debug' # Depurar
gem "debug" # Depurar

gem 'colorize' # Colores en terminal
gem "colorize" # Colores en terminal

gem 'dotenv-rails'
gem "dotenv-rails"
end


group :development do
gem 'erd'
gem "erd"

gem 'puma'
gem "puma"

gem 'rails-erd'
gem "rails-erd"

gem 'redis', '~> 4.0'
gem "redis", "~> 4.0"

gem 'spring' # Acelera ejecutando en fondo.
gem "spring" # Acelera ejecutando en fondo.

gem 'web-console'
gem "web-console"
end


group :test do
gem 'cuprite'
gem "cuprite"

gem 'capybara'
gem "capybara"

gem 'selenium-webdriver'
gem "selenium-webdriver"

gem 'simplecov'
gem "simplecov"
end


group :production do
gem 'unicorn' # Para despliegue
gem "unicorn" # Para despliegue
end
18 changes: 9 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ GIT

GIT
remote: https://gitlab.com/pasosdeJesus/heb412_gen.git
revision: 71495453bb62ca518ca00be3aee5add3f3faa8ff
revision: 31f166f4c14aae30f070b28707338f052b6ba82b
branch: main
specs:
heb412_gen (2.2.0.beta4)
Expand All @@ -64,7 +64,7 @@ GIT

GIT
remote: https://gitlab.com/pasosdeJesus/msip.git
revision: 090470149b6fc798f1c056e60c27af6de486543f
revision: 1b98b3ba2b146f2768d4699049b0a2c322adb4ae
branch: main
specs:
msip (2.2.0.beta4)
Expand All @@ -84,7 +84,7 @@ GIT

GIT
remote: https://gitlab.com/pasosdeJesus/sivel2_gen.git
revision: d7b620d767f0f9d4d83866affb74fc2893adcda4
revision: 7f4448f16811cc58c2633bba7866d99d4aac54e6
branch: main
specs:
sivel2_gen (2.2.0.beta4)
Expand Down Expand Up @@ -212,7 +212,7 @@ GEM
railties (>= 4.1.0)
responders
warden (~> 1.2.3)
devise-i18n (1.11.1)
devise-i18n (1.12.0)
devise (>= 4.9.0)
docile (1.4.0)
dotenv (2.8.1)
Expand Down Expand Up @@ -255,7 +255,7 @@ GEM
concurrent-ruby (~> 1.1)
webrick (~> 1.7)
websocket-driver (>= 0.6, < 0.8)
ffi (1.16.2)
ffi (1.16.3)
globalid (1.2.1)
activesupport (>= 6.1)
hotwire-rails (0.1.3)
Expand Down Expand Up @@ -288,12 +288,12 @@ GEM
method_source (1.0.0)
mime-types (3.5.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2023.0808)
mime-types-data (3.2023.1003)
mini_mime (1.1.5)
mini_portile2 (2.8.4)
minitest (5.20.0)
msgpack (1.7.2)
net-imap (0.3.7)
net-imap (0.4.0)
date
net-protocol
net-pop (0.1.2)
Expand Down Expand Up @@ -375,7 +375,7 @@ GEM
redcarpet (3.6.0)
redis (4.8.1)
regexp_parser (2.8.1)
reline (0.3.8)
reline (0.3.9)
io-console (~> 0.5)
responders (3.1.0)
actionpack (>= 5.2)
Expand Down Expand Up @@ -496,7 +496,7 @@ DEPENDENCIES
puma
rack
rack-cors
rails (~> 7.0)
rails (>= 7.0, < 7.1)
rails-erd
rails-i18n
redcarpet
Expand Down
3 changes: 2 additions & 1 deletion db/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8836,6 +8836,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20230712163859'),
('20230722180204'),
('20230723011110'),
('20230927001422');
('20230927001422'),
('20231007095930');


Loading

0 comments on commit 91c1b14

Please sign in to comment.