Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump/0.29 #45

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/ci_cleaner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ on: [push]
env:
CI: "true"
CODECOV: "true"
RUBY_VERSION: 3.1.1
NODE_VERSION: 16.9.1
WEBPACKER_RUNTIME_COMPILE: "false"
RUBY_VERSION: 3.2.2
NODE_VERSION: 18.17.1
SHAKAPACKER_RUNTIME_COMPILE: "false"
RAILS_ENV: test

DISABLE_SPRING: "true"

jobs:
lint:
name: Lint code
Expand Down Expand Up @@ -82,4 +83,4 @@ jobs:
- uses: OpenSourcePolitics/publish-gem-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}
rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}
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
4 changes: 3 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require: rubocop-factory_bot

inherit_from:
- .rubocop_ruby.yml
- .rubocop_rails.yml
Expand All @@ -19,4 +21,4 @@ AllCops:

RSpec/DescribeClass:
Exclude:
- spec/system/*
- spec/system/*
7 changes: 4 additions & 3 deletions .rubocop_ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -975,9 +975,10 @@ Style/SymbolArray:
Style/SymbolProc:
# A list of method names to be ignored by the check.
# The names should be fairly unique, otherwise you'll end up ignoring lots of code.
IgnoredMethods:
- respond_to
- define_method
Enabled: true
Exclude:
- respond_to
- define_method

Style/TernaryParentheses:
EnforcedStyle: require_no_parentheses
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.1
3.2.2
10 changes: 5 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ source "https://rubygems.org"

ruby RUBY_VERSION

gem "decidim", git: "https://github.com/decidim/decidim"
gem "decidim", "~> 0.29.1"
gem "decidim-cleaner", path: "."

gem "bootsnap", "~> 1.4"
gem "puma", ">= 4.3"
gem "puma", ">= 6.3.1"

group :development, :test do
gem "byebug", "~> 11.0", platform: :mri
gem "decidim-dev", git: "https://github.com/decidim/decidim"
gem "rubocop-rails", "~> 2.19.0"
gem "decidim-dev", "~> 0.29.1"
gem "rubocop-rails", "~> 2.25"
end

group :development do
gem "faker", "~> 3.2"
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring", "~> 4.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 4.2"
end
Loading
Loading