conversejs 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -34
- data/CHANGELOG.md +4 -0
- data/Envfile +1 -0
- data/LICENSE +1 -1
- data/lib/conversejs/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b754d5cf758affc04bb419ffa44515b652ebb1bfdfcdd74bcbc0a297c88d637
|
|
4
|
+
data.tar.gz: 0d6f71c2d2995fc628d460a65068296ea3ba4d6b11127c98f2394de50f22f456
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc66e2fb52aa68c358e4394df4a24f9101233f17e0bcd4e8c2f04035c70f89cd769f7f7a24646fbd15e0fc862dfb13582038f6400bcef791afd06ddfa2150416
|
|
7
|
+
data.tar.gz: 76a7bfe0f6a252a996d2e9f2d9c19ddba1399eea734b40342872e6813538862b468bf5b40b3c57aecdc6f9df5f4598f8fd0b08a93bcecae730968eff174e3ee3
|
data/.rubocop.yml
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
inherit_from:
|
|
2
|
+
- https://potpourri.hausgold.de/config/rubocop.yml
|
|
3
|
+
- https://potpourri.hausgold.de/config/rubocop-gem.yml
|
|
4
|
+
|
|
1
5
|
plugins:
|
|
2
6
|
- rubocop-rspec
|
|
3
7
|
- rubocop-rails
|
|
@@ -5,9 +9,6 @@ plugins:
|
|
|
5
9
|
Rails:
|
|
6
10
|
Enabled: true
|
|
7
11
|
|
|
8
|
-
Style/Documentation:
|
|
9
|
-
Enabled: true
|
|
10
|
-
|
|
11
12
|
AllCops:
|
|
12
13
|
NewCops: enable
|
|
13
14
|
SuggestExtensions: false
|
|
@@ -21,43 +22,12 @@ AllCops:
|
|
|
21
22
|
- gemfiles/**/*
|
|
22
23
|
- spec/dummy/**/*
|
|
23
24
|
|
|
24
|
-
Metrics/BlockLength:
|
|
25
|
-
Exclude:
|
|
26
|
-
- Rakefile
|
|
27
|
-
- '*.gemspec'
|
|
28
|
-
- spec/**/*.rb
|
|
29
|
-
- '**/*.rake'
|
|
30
|
-
- doc/**/*.rb
|
|
31
|
-
|
|
32
|
-
# MFA is not yet enabled for our gems yet.
|
|
33
|
-
Gemspec/RequireMFA:
|
|
34
|
-
Enabled: false
|
|
35
|
-
|
|
36
|
-
# We stay with the original Ruby Style Guide recommendation.
|
|
37
|
-
Layout/LineLength:
|
|
38
|
-
Max: 80
|
|
39
|
-
|
|
40
|
-
# Document all the things.
|
|
41
|
-
Style/DocumentationMethod:
|
|
42
|
-
Enabled: true
|
|
43
|
-
RequireForNonPublicMethods: true
|
|
44
|
-
|
|
45
25
|
# It's a deliberate idiom in RSpec.
|
|
46
26
|
# See: https://github.com/bbatsov/rubocop/issues/4222
|
|
47
27
|
Lint/AmbiguousBlockAssociation:
|
|
48
28
|
Exclude:
|
|
49
29
|
- "spec/**/*"
|
|
50
30
|
|
|
51
|
-
# Because +expect_any_instance_of().to have_received()+ is not
|
|
52
|
-
# supported with the +with(hash_including)+ matchers
|
|
53
|
-
RSpec/MessageSpies:
|
|
54
|
-
EnforcedStyle: receive
|
|
55
|
-
|
|
56
|
-
# Because nesting makes sense here to group the feature tests
|
|
57
|
-
# more effective. This increases maintainability.
|
|
58
|
-
RSpec/NestedGroups:
|
|
59
|
-
Max: 4
|
|
60
|
-
|
|
61
31
|
# Disable regular Rails spec paths.
|
|
62
32
|
Rails/FilePath:
|
|
63
33
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 4.2.0 (19 December 2025)
|
|
6
|
+
|
|
7
|
+
* Migrated to a shared Rubocop configuration for HAUSGOLD gems ([#18](https://github.com/hausgold/conversejs/pull/18))
|
|
8
|
+
|
|
5
9
|
### 4.1.0 (24 October 2025)
|
|
6
10
|
|
|
7
11
|
* Added support for Rails 8.1 ([#17](https://github.com/hausgold/conversejs/pull/17))
|
data/Envfile
CHANGED
data/LICENSE
CHANGED
data/lib/conversejs/version.rb
CHANGED