commit
62bd2cc0d7
5 changed files with 99 additions and 87 deletions
6
.github/actions/ci-setup-rails/action.yml
vendored
6
.github/actions/ci-setup-rails/action.yml
vendored
|
@ -9,6 +9,12 @@ runs:
|
||||||
with:
|
with:
|
||||||
bundler-cache: true
|
bundler-cache: true
|
||||||
|
|
||||||
|
- name: Check YJIT support
|
||||||
|
run: |
|
||||||
|
ruby --yjit -v
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
|
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
@ -56,6 +56,8 @@ jobs:
|
||||||
unit_tests:
|
unit_tests:
|
||||||
name: Unit tests
|
name: Unit tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
RUBY_YJIT_ENABLE: "1"
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgis/postgis:14-3.3
|
image: postgis/postgis:14-3.3
|
||||||
|
@ -72,12 +74,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install build dependancies
|
||||||
|
# - fonts pickable by ImageMagick
|
||||||
|
# - rust for YJIT support
|
||||||
|
run: sudo apt-get install -y gsfonts rustc
|
||||||
|
|
||||||
- name: Setup the app runtime and dependencies
|
- name: Setup the app runtime and dependencies
|
||||||
uses: ./.github/actions/ci-setup-rails
|
uses: ./.github/actions/ci-setup-rails
|
||||||
|
|
||||||
- name: Install fonts pickable by ImageMagick
|
|
||||||
run: sudo apt-get install -y gsfonts
|
|
||||||
|
|
||||||
- name: Pre-compile assets
|
- name: Pre-compile assets
|
||||||
uses: ./.github/actions/ci-setup-assets
|
uses: ./.github/actions/ci-setup-assets
|
||||||
|
|
||||||
|
@ -101,6 +105,8 @@ jobs:
|
||||||
system_tests:
|
system_tests:
|
||||||
name: System tests
|
name: System tests
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
|
env:
|
||||||
|
RUBY_YJIT_ENABLE: "1"
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgis/postgis:14-3.3
|
image: postgis/postgis:14-3.3
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
3.2.2
|
3.3.0
|
||||||
|
|
5
Gemfile
5
Gemfile
|
@ -1,6 +1,6 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
gem 'rails', '~> 7.0.5' # allows update to security fixes at any time
|
gem 'rails', '~> 7.0.8' # allows update to security fixes at any time
|
||||||
|
|
||||||
gem 'aasm'
|
gem 'aasm'
|
||||||
gem 'acsv'
|
gem 'acsv'
|
||||||
|
@ -137,9 +137,8 @@ end
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
gem 'graphql-schema_comparator'
|
gem 'graphql-schema_comparator'
|
||||||
|
gem 'irb'
|
||||||
gem 'mina', require: false # Deploy
|
gem 'mina', require: false # Deploy
|
||||||
gem 'pry-byebug' # Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
||||||
gem 'pry-rails'
|
|
||||||
gem 'rspec-rails'
|
gem 'rspec-rails'
|
||||||
gem 'simple_xlsx_reader'
|
gem 'simple_xlsx_reader'
|
||||||
gem 'spring' # Spring speeds up development by keeping your application running in the background
|
gem 'spring' # Spring speeds up development by keeping your application running in the background
|
||||||
|
|
161
Gemfile.lock
161
Gemfile.lock
|
@ -4,47 +4,47 @@ GEM
|
||||||
aasm (5.2.0)
|
aasm (5.2.0)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
acsv (0.0.1)
|
acsv (0.0.1)
|
||||||
actioncable (7.0.7.2)
|
actioncable (7.0.8)
|
||||||
actionpack (= 7.0.7.2)
|
actionpack (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
actionmailbox (7.0.7.2)
|
actionmailbox (7.0.8)
|
||||||
actionpack (= 7.0.7.2)
|
actionpack (= 7.0.8)
|
||||||
activejob (= 7.0.7.2)
|
activejob (= 7.0.8)
|
||||||
activerecord (= 7.0.7.2)
|
activerecord (= 7.0.8)
|
||||||
activestorage (= 7.0.7.2)
|
activestorage (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
mail (>= 2.7.1)
|
mail (>= 2.7.1)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
actionmailer (7.0.7.2)
|
actionmailer (7.0.8)
|
||||||
actionpack (= 7.0.7.2)
|
actionpack (= 7.0.8)
|
||||||
actionview (= 7.0.7.2)
|
actionview (= 7.0.8)
|
||||||
activejob (= 7.0.7.2)
|
activejob (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
mail (~> 2.5, >= 2.5.4)
|
mail (~> 2.5, >= 2.5.4)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
actionpack (7.0.7.2)
|
actionpack (7.0.8)
|
||||||
actionview (= 7.0.7.2)
|
actionview (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
rack (~> 2.0, >= 2.2.4)
|
rack (~> 2.0, >= 2.2.4)
|
||||||
rack-test (>= 0.6.3)
|
rack-test (>= 0.6.3)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
actiontext (7.0.7.2)
|
actiontext (7.0.8)
|
||||||
actionpack (= 7.0.7.2)
|
actionpack (= 7.0.8)
|
||||||
activerecord (= 7.0.7.2)
|
activerecord (= 7.0.8)
|
||||||
activestorage (= 7.0.7.2)
|
activestorage (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
globalid (>= 0.6.0)
|
globalid (>= 0.6.0)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (7.0.7.2)
|
actionview (7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.4)
|
erubi (~> 1.4)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
|
@ -59,31 +59,31 @@ GEM
|
||||||
activemodel (>= 5.2.0)
|
activemodel (>= 5.2.0)
|
||||||
activestorage (>= 5.2.0)
|
activestorage (>= 5.2.0)
|
||||||
activesupport (>= 5.2.0)
|
activesupport (>= 5.2.0)
|
||||||
activejob (7.0.7.2)
|
activejob (7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (7.0.7.2)
|
activemodel (7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
activerecord (7.0.7.2)
|
activerecord (7.0.8)
|
||||||
activemodel (= 7.0.7.2)
|
activemodel (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
activestorage (7.0.7.2)
|
activestorage (7.0.8)
|
||||||
actionpack (= 7.0.7.2)
|
actionpack (= 7.0.8)
|
||||||
activejob (= 7.0.7.2)
|
activejob (= 7.0.8)
|
||||||
activerecord (= 7.0.7.2)
|
activerecord (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
mini_mime (>= 1.1.0)
|
mini_mime (>= 1.1.0)
|
||||||
activestorage-openstack (1.6.0)
|
activestorage-openstack (1.6.0)
|
||||||
fog-openstack (>= 1.0.9)
|
fog-openstack (>= 1.0.9)
|
||||||
marcel
|
marcel
|
||||||
rails (>= 5.2.2)
|
rails (>= 5.2.2)
|
||||||
activesupport (7.0.7.2)
|
activesupport (7.0.8)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
tzinfo (~> 2.0)
|
tzinfo (~> 2.0)
|
||||||
addressable (2.8.5)
|
addressable (2.8.6)
|
||||||
public_suffix (>= 2.0.2, < 6.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
administrate (0.18.0)
|
administrate (0.18.0)
|
||||||
actionpack (>= 5.0)
|
actionpack (>= 5.0)
|
||||||
|
@ -134,7 +134,6 @@ GEM
|
||||||
brow (0.4.1)
|
brow (0.4.1)
|
||||||
browser (5.3.1)
|
browser (5.3.1)
|
||||||
builder (3.2.4)
|
builder (3.2.4)
|
||||||
byebug (11.1.3)
|
|
||||||
capybara (3.39.2)
|
capybara (3.39.2)
|
||||||
addressable
|
addressable
|
||||||
matrix
|
matrix
|
||||||
|
@ -162,7 +161,6 @@ GEM
|
||||||
choice (0.2.0)
|
choice (0.2.0)
|
||||||
chunky_png (1.4.0)
|
chunky_png (1.4.0)
|
||||||
clamav-client (3.2.0)
|
clamav-client (3.2.0)
|
||||||
coderay (1.1.3)
|
|
||||||
coercible (1.0.0)
|
coercible (1.0.0)
|
||||||
descendants_tracker (~> 0.0.1)
|
descendants_tracker (~> 0.0.1)
|
||||||
concurrent-ruby (1.2.2)
|
concurrent-ruby (1.2.2)
|
||||||
|
@ -171,10 +169,10 @@ GEM
|
||||||
crack (0.4.5)
|
crack (0.4.5)
|
||||||
rexml
|
rexml
|
||||||
crass (1.0.6)
|
crass (1.0.6)
|
||||||
css_parser (1.9.0)
|
css_parser (1.16.0)
|
||||||
addressable
|
addressable
|
||||||
daemons (1.3.1)
|
daemons (1.3.1)
|
||||||
date (3.3.3)
|
date (3.3.4)
|
||||||
deep_cloneable (3.2.0)
|
deep_cloneable (3.2.0)
|
||||||
activerecord (>= 3.1.0, < 8)
|
activerecord (>= 3.1.0, < 8)
|
||||||
delayed_cron_job (0.7.4)
|
delayed_cron_job (0.7.4)
|
||||||
|
@ -347,6 +345,10 @@ GEM
|
||||||
ruby-vips (>= 2.0.17, < 3)
|
ruby-vips (>= 2.0.17, < 3)
|
||||||
invisible_captcha (2.0.0)
|
invisible_captcha (2.0.0)
|
||||||
rails (>= 5.0)
|
rails (>= 5.0)
|
||||||
|
io-console (0.7.1)
|
||||||
|
irb (1.11.0)
|
||||||
|
rdoc
|
||||||
|
reline (>= 0.3.8)
|
||||||
job-iteration (1.4.1)
|
job-iteration (1.4.1)
|
||||||
activejob (>= 5.2)
|
activejob (>= 5.2)
|
||||||
jquery-rails (4.5.1)
|
jquery-rails (4.5.1)
|
||||||
|
@ -433,18 +435,18 @@ GEM
|
||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
mustermann (3.0.0)
|
mustermann (3.0.0)
|
||||||
ruby2_keywords (~> 0.0.1)
|
ruby2_keywords (~> 0.0.1)
|
||||||
net-imap (0.3.7)
|
net-imap (0.4.9.1)
|
||||||
date
|
date
|
||||||
net-protocol
|
net-protocol
|
||||||
net-pop (0.1.2)
|
net-pop (0.1.2)
|
||||||
net-protocol
|
net-protocol
|
||||||
net-protocol (0.2.1)
|
net-protocol (0.2.2)
|
||||||
timeout
|
timeout
|
||||||
net-smtp (0.3.3)
|
net-smtp (0.4.0.1)
|
||||||
net-protocol
|
net-protocol
|
||||||
netrc (0.11.0)
|
netrc (0.11.0)
|
||||||
nio4r (2.7.0)
|
nio4r (2.7.0)
|
||||||
nokogiri (1.15.5)
|
nokogiri (1.16.0)
|
||||||
mini_portile2 (~> 2.8.2)
|
mini_portile2 (~> 2.8.2)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
open4 (1.3.4)
|
open4 (1.3.4)
|
||||||
|
@ -461,8 +463,9 @@ GEM
|
||||||
orm_adapter (0.5.0)
|
orm_adapter (0.5.0)
|
||||||
parallel (1.23.0)
|
parallel (1.23.0)
|
||||||
parsby (1.1.1)
|
parsby (1.1.1)
|
||||||
parser (3.2.2.0)
|
parser (3.3.0.2)
|
||||||
ast (~> 2.4.1)
|
ast (~> 2.4.1)
|
||||||
|
racc
|
||||||
pdf-core (0.9.0)
|
pdf-core (0.9.0)
|
||||||
pg (1.4.6)
|
pg (1.4.6)
|
||||||
phonelib (0.6.53)
|
phonelib (0.6.53)
|
||||||
|
@ -475,23 +478,17 @@ GEM
|
||||||
rails (>= 3.1.0)
|
rails (>= 3.1.0)
|
||||||
prawn-table (0.2.2)
|
prawn-table (0.2.2)
|
||||||
prawn (>= 1.3.0, < 3.0.0)
|
prawn (>= 1.3.0, < 3.0.0)
|
||||||
premailer (1.14.2)
|
premailer (1.22.0)
|
||||||
addressable
|
addressable
|
||||||
css_parser (>= 1.6.0)
|
css_parser (>= 1.12.0)
|
||||||
htmlentities (>= 4.0.0)
|
htmlentities (>= 4.0.0)
|
||||||
premailer-rails (1.11.1)
|
premailer-rails (1.11.1)
|
||||||
actionmailer (>= 3)
|
actionmailer (>= 3)
|
||||||
premailer (~> 1.7, >= 1.7.9)
|
premailer (~> 1.7, >= 1.7.9)
|
||||||
promise.rb (0.7.4)
|
promise.rb (0.7.4)
|
||||||
pry (0.14.2)
|
psych (5.1.2)
|
||||||
coderay (~> 1.1)
|
stringio
|
||||||
method_source (~> 1.0)
|
public_suffix (5.0.4)
|
||||||
pry-byebug (3.10.1)
|
|
||||||
byebug (~> 11.0)
|
|
||||||
pry (>= 0.13, < 0.15)
|
|
||||||
pry-rails (0.3.9)
|
|
||||||
pry (>= 0.10.4)
|
|
||||||
public_suffix (5.0.3)
|
|
||||||
puma (6.4.2)
|
puma (6.4.2)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
pundit (2.2.0)
|
pundit (2.2.0)
|
||||||
|
@ -518,20 +515,20 @@ GEM
|
||||||
rack_session_access (0.2.0)
|
rack_session_access (0.2.0)
|
||||||
builder (>= 2.0.0)
|
builder (>= 2.0.0)
|
||||||
rack (>= 1.0.0)
|
rack (>= 1.0.0)
|
||||||
rails (7.0.7.2)
|
rails (7.0.8)
|
||||||
actioncable (= 7.0.7.2)
|
actioncable (= 7.0.8)
|
||||||
actionmailbox (= 7.0.7.2)
|
actionmailbox (= 7.0.8)
|
||||||
actionmailer (= 7.0.7.2)
|
actionmailer (= 7.0.8)
|
||||||
actionpack (= 7.0.7.2)
|
actionpack (= 7.0.8)
|
||||||
actiontext (= 7.0.7.2)
|
actiontext (= 7.0.8)
|
||||||
actionview (= 7.0.7.2)
|
actionview (= 7.0.8)
|
||||||
activejob (= 7.0.7.2)
|
activejob (= 7.0.8)
|
||||||
activemodel (= 7.0.7.2)
|
activemodel (= 7.0.8)
|
||||||
activerecord (= 7.0.7.2)
|
activerecord (= 7.0.8)
|
||||||
activestorage (= 7.0.7.2)
|
activestorage (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 7.0.7.2)
|
railties (= 7.0.8)
|
||||||
rails-controller-testing (1.0.5)
|
rails-controller-testing (1.0.5)
|
||||||
actionpack (>= 5.0.1.rc1)
|
actionpack (>= 5.0.1.rc1)
|
||||||
actionview (>= 5.0.1.rc1)
|
actionview (>= 5.0.1.rc1)
|
||||||
|
@ -551,9 +548,9 @@ GEM
|
||||||
rails-i18n (7.0.3)
|
rails-i18n (7.0.3)
|
||||||
i18n (>= 0.7, < 2)
|
i18n (>= 0.7, < 2)
|
||||||
railties (>= 6.0.0, < 8)
|
railties (>= 6.0.0, < 8)
|
||||||
railties (7.0.7.2)
|
railties (7.0.8)
|
||||||
actionpack (= 7.0.7.2)
|
actionpack (= 7.0.8)
|
||||||
activesupport (= 7.0.7.2)
|
activesupport (= 7.0.8)
|
||||||
method_source
|
method_source
|
||||||
rake (>= 12.2)
|
rake (>= 12.2)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
|
@ -564,12 +561,16 @@ GEM
|
||||||
rb-fsevent (0.11.2)
|
rb-fsevent (0.11.2)
|
||||||
rb-inotify (0.10.1)
|
rb-inotify (0.10.1)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
|
rdoc (6.6.2)
|
||||||
|
psych (>= 4.0.0)
|
||||||
redcarpet (3.6.0)
|
redcarpet (3.6.0)
|
||||||
redis (5.0.6)
|
redis (5.0.6)
|
||||||
redis-client (>= 0.9.0)
|
redis-client (>= 0.9.0)
|
||||||
redis-client (0.18.0)
|
redis-client (0.18.0)
|
||||||
connection_pool
|
connection_pool
|
||||||
regexp_parser (2.8.1)
|
regexp_parser (2.8.1)
|
||||||
|
reline (0.4.2)
|
||||||
|
io-console (~> 0.5)
|
||||||
request_store (1.5.0)
|
request_store (1.5.0)
|
||||||
rack (>= 1.4)
|
rack (>= 1.4)
|
||||||
responders (3.1.1)
|
responders (3.1.1)
|
||||||
|
@ -721,6 +722,7 @@ GEM
|
||||||
activesupport (>= 5.2)
|
activesupport (>= 5.2)
|
||||||
sprockets (>= 3.0.0)
|
sprockets (>= 3.0.0)
|
||||||
stackprof (0.2.21)
|
stackprof (0.2.21)
|
||||||
|
stringio (3.1.0)
|
||||||
strong_migrations (0.8.0)
|
strong_migrations (0.8.0)
|
||||||
activerecord (>= 5.2)
|
activerecord (>= 5.2)
|
||||||
swd (1.3.0)
|
swd (1.3.0)
|
||||||
|
@ -735,7 +737,7 @@ GEM
|
||||||
thread_safe (0.3.6)
|
thread_safe (0.3.6)
|
||||||
tilt (2.0.11)
|
tilt (2.0.11)
|
||||||
timecop (0.9.4)
|
timecop (0.9.4)
|
||||||
timeout (0.4.0)
|
timeout (0.4.1)
|
||||||
ttfunk (1.7.0)
|
ttfunk (1.7.0)
|
||||||
turbo-rails (1.3.2)
|
turbo-rails (1.3.2)
|
||||||
actionpack (>= 6.0.0)
|
actionpack (>= 6.0.0)
|
||||||
|
@ -775,7 +777,7 @@ GEM
|
||||||
zeitwerk (~> 2.2)
|
zeitwerk (~> 2.2)
|
||||||
warden (1.2.9)
|
warden (1.2.9)
|
||||||
rack (>= 2.0.9)
|
rack (>= 2.0.9)
|
||||||
web-console (4.1.0)
|
web-console (4.2.1)
|
||||||
actionview (>= 6.0.0)
|
actionview (>= 6.0.0)
|
||||||
activemodel (>= 6.0.0)
|
activemodel (>= 6.0.0)
|
||||||
bindex (>= 0.4.0)
|
bindex (>= 0.4.0)
|
||||||
|
@ -870,6 +872,7 @@ DEPENDENCIES
|
||||||
iban-tools
|
iban-tools
|
||||||
image_processing
|
image_processing
|
||||||
invisible_captcha
|
invisible_captcha
|
||||||
|
irb
|
||||||
json_schemer
|
json_schemer
|
||||||
jwt
|
jwt
|
||||||
kaminari
|
kaminari
|
||||||
|
@ -893,14 +896,12 @@ DEPENDENCIES
|
||||||
phonelib
|
phonelib
|
||||||
prawn-rails
|
prawn-rails
|
||||||
premailer-rails
|
premailer-rails
|
||||||
pry-byebug
|
|
||||||
pry-rails
|
|
||||||
puma
|
puma
|
||||||
pundit
|
pundit
|
||||||
rack-attack
|
rack-attack
|
||||||
rack-mini-profiler
|
rack-mini-profiler
|
||||||
rack_session_access
|
rack_session_access
|
||||||
rails (~> 7.0.5)
|
rails (~> 7.0.8)
|
||||||
rails-controller-testing
|
rails-controller-testing
|
||||||
rails-erd
|
rails-erd
|
||||||
rails-i18n
|
rails-i18n
|
||||||
|
@ -949,4 +950,4 @@ DEPENDENCIES
|
||||||
zxcvbn-ruby
|
zxcvbn-ruby
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.3.11
|
2.5.4
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue