Skip to content

Commit 8aae30f

Browse files
Release OpenProject 11.2.4
2 parents 22513ba + b5757a2 commit 8aae30f

File tree

322 files changed

+4605
-2977
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

322 files changed

+4605
-2977
lines changed

.rubocop.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,23 @@ Naming/PredicateName:
9595
ForbiddenPrefixes:
9696
- is_
9797

98+
# For feature specs, we tend to have longer specs that cover a larger part of the functionality.
99+
# This is done for multiple reasons:
100+
# * performance, as setting up integration tests is costly
101+
# * following a scenario that is closer to how a user interacts
102+
RSpec/ExampleLength:
103+
Enabled: true
104+
Exclude:
105+
- 'spec/features/**/*.rb'
106+
- 'modules/*/spec/features/**/*.rb'
107+
108+
# See RSpec/ExampleLength for why feature specs are excluded
109+
RSpec/MultipleExpectations
110+
Enabled: true
111+
Exclude:
112+
- 'spec/features/**/*.rb'
113+
- 'modules/*/spec/features/**/*.rb'
114+
98115

99116
Style/Alias:
100117
Enabled: false

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.2
1+
2.7.3

.travis.yml

Lines changed: 0 additions & 157 deletions
This file was deleted.

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
source 'https://rubygems.org'
3030

31-
ruby '~> 2.7.2'
31+
ruby '~> 2.7.3'
3232

3333
gem 'actionpack-xml_parser', '~> 2.0.0'
3434
gem 'activemodel-serializers-xml', '~> 1.0.1'
@@ -171,7 +171,7 @@ gem 'sprockets', '~> 3.7.0'
171171
# also, better than thin since we can control worker concurrency.
172172
gem 'unicorn'
173173

174-
gem 'puma', '~> 5.2.0' # used for development and optionally for production
174+
gem 'puma', '~> 5.3.0' # used for development and optionally for production
175175

176176
gem 'nokogiri', '~> 1.11.0'
177177

0 commit comments

Comments
 (0)