Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/bundler/decidim-regulations/act…
Browse files Browse the repository at this point in the history
…ionpack-6.1.7.9
  • Loading branch information
tramuntanal authored Jan 30, 2025
2 parents a0a33f9 + c80a2fe commit b80a545
Show file tree
Hide file tree
Showing 333 changed files with 39,998 additions and 29,628 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:

env:
RUBY_VERSION: 3.0.7
RUBY_VERSION: 3.1.1

jobs:
test-report:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-process_extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:

env:
RUBY_VERSION: 3.0.7
RUBY_VERSION: 3.1.1

jobs:
test-report:
Expand Down Expand Up @@ -69,6 +69,9 @@ jobs:
with:
chrome-version: 119.0.6045.105

- name: Install ImageMagick
run: sudo apt install imagemagick

- name: Install Ruby deps
uses: nick-invision/retry@v2
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-recaptcha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:

env:
RUBY_VERSION: 3.0.7
RUBY_VERSION: 3.1.1

jobs:
test-report:
Expand Down Expand Up @@ -69,6 +69,9 @@ jobs:
with:
chrome-version: 119.0.6045.105

- name: Install ImageMagick
run: sudo apt install imagemagick

- name: Install Ruby deps
uses: nick-invision/retry@v2
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-top_comments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:

env:
RUBY_VERSION: 3.0.7
RUBY_VERSION: 3.1.1

jobs:
test-report:
Expand Down Expand Up @@ -69,6 +69,9 @@ jobs:
with:
chrome-version: 119.0.6045.105

- name: Install ImageMagick
run: sudo apt install imagemagick

- name: Install Ruby deps
uses: nick-invision/retry@v2
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:

env:
RUBY_VERSION: 3.0.7
RUBY_VERSION: 3.1.1
NODE_VERSION: 16.9.1

jobs:
Expand Down Expand Up @@ -79,6 +79,9 @@ jobs:
with:
chrome-version: 119.0.6045.105

- name: Install ImageMagick
run: sudo apt install imagemagick

- name: Install Ruby deps
uses: nick-invision/retry@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
DB_DATABASE: app
DB_USERNAME: postgres
DB_PASSWORD: postgres
RUBY_VERSION: 3.0.7
RUBY_VERSION: 3.1.1

jobs:
test:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,5 @@ spec/decidim_dummy_app/

coverage/
storage/

tailwind.config.js
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.9.1
18.17.1
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.7
3.1.1
29 changes: 17 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source "https://rubygems.org"

ruby RUBY_VERSION
DECIDIM_VERSION = { git: "https://github.com/CodiTramuntana/decidim", branch: "release/0.27-stable" }.freeze
DECIDIM_VERSION = { git: "https://github.com/CodiTramuntana/decidim", branch: "release/0.28-stable_decidim_templates" }.freeze

gem "decidim", DECIDIM_VERSION
gem "decidim-templates", DECIDIM_VERSION
Expand All @@ -15,20 +15,24 @@ gem "decidim-recaptcha", path: "decidim-recaptcha"
gem "decidim-regulations", path: "decidim-regulations"
gem "decidim-top_comments", path: "decidim-top_comments"

gem "decidim-cdtb"
gem "decidim-challenges", git: "https://github.com/gencat/decidim-module-challenges.git", tag: "v0.3.3"
gem "decidim-department_admin", "~> 0.7.2"
gem "decidim-idcat_mobil"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git", branch: "release/0.27-stable"

gem "decidim-verifications-members_picker", "~> 0.0.6.1"
gem "decidim-cdtb", git: "https://github.com/CodiTramuntana/decidim-module-cdtb.git", tag: "v0.3.0"
gem "decidim-challenges", git: "https://github.com/gencat/decidim-module-challenges.git", tag: "v0.5.0"
gem "decidim-department_admin", "~> 0.8.0"
gem "decidim-idcat_mobil", git: "https://github.com/gencat/decidim-module-idcat_mobil.git", tag: "v0.5.0"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer.git"
gem "decidim-verifications-members_picker", "~> 0.0.7"
#### Custom gems and modifications block end ####

gem "soda-ruby", require: false

gem "puma"

gem "figaro", ">= 1.1.1"
# TODO: Psych problem: https://github.com/laserlemon/figaro/issues/289
# gem "figaro"
# This gem is an alternative to Figaro meanwhile fix that problem in Figaro.
# https://github.com/hlascelles/figjam
gem "figjam"
gem "wkhtmltopdf-binary"

gem "daemons"
gem "deface"
Expand All @@ -49,15 +53,16 @@ group :development, :test do
gem "byebug", platform: :mri
gem "decidim-dev", DECIDIM_VERSION
gem "faker"
gem "rspec-rails"
gem "rubocop-faker"
# Set versions because Property AutoCorrect errors.
gem "rspec-rails", "~> 6.0.4"
gem "rubocop-factory_bot", "2.25.1"
gem "rubocop-rspec", "2.26.1"
end

group :development do
gem "letter_opener_web"
gem "listen"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console"
end

Expand Down
Loading

0 comments on commit b80a545

Please sign in to comment.