jabber_admin 2.9.0 → 2.10.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/CHANGELOG.md +4 -0
- data/lib/jabber_admin/commands/set_presence.rb +1 -2
- data/lib/jabber_admin/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5d70016fbded8c9138c773121cf64a0af9ad0649f977880b12349b6c5955227
|
|
4
|
+
data.tar.gz: 2630cf4d854e8eb3050ede0be81f3969a9489edece017b236ee8654779862393
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aaf70494a4f596e1dcb3d25635850ea5c8445e3952f57f85de229c594920ba16a4f6b226c9fb82111d72508e0cb7d0aaf4a85ee020339f82a3e86a6c7ecbef1f
|
|
7
|
+
data.tar.gz: db0859c08662419dd597d9034024874a3d5cc6026c31818f7233610b37c94f8e46b252e05ef786a05e5197e83374d0d8d4e974813e77b7c19ad125d0a5f4641b
|
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
|
+
### 2.10.0 (27 August 2026)
|
|
6
|
+
|
|
7
|
+
* Corrected some RuboCop glitches ([#33](https://github.com/hausgold/jabber_admin/pull/33))
|
|
8
|
+
|
|
5
9
|
### 2.9.0 (20 May 2026)
|
|
6
10
|
|
|
7
11
|
* Corrected some RuboCop glitches ([#32](https://github.com/hausgold/jabber_admin/pull/32))
|
|
@@ -15,7 +15,7 @@ module JabberAdmin
|
|
|
15
15
|
# @param status [String] the user status (eg. +I'm online+)
|
|
16
16
|
# @param priority [String] presence priority (eg. +7+)
|
|
17
17
|
#
|
|
18
|
-
# rubocop:disable Metrics/ParameterLists -- because of the mapping
|
|
18
|
+
# rubocop:disable-next Metrics/ParameterLists -- because of the mapping
|
|
19
19
|
def self.call(callable, user:, type: 'available', show: 'chat',
|
|
20
20
|
status: '', priority: '7')
|
|
21
21
|
uid, host = user.split('@')
|
|
@@ -30,7 +30,6 @@ module JabberAdmin
|
|
|
30
30
|
status: status,
|
|
31
31
|
priority: priority)
|
|
32
32
|
end
|
|
33
|
-
# rubocop:enable Metrics/ParameterLists
|
|
34
33
|
end
|
|
35
34
|
end
|
|
36
35
|
end
|
data/lib/jabber_admin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jabber_admin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
151
|
version: '0'
|
|
152
152
|
requirements: []
|
|
153
|
-
rubygems_version: 4.0.
|
|
153
|
+
rubygems_version: 4.0.16
|
|
154
154
|
specification_version: 4
|
|
155
155
|
summary: Library for the ejabberd RESTful admin API
|
|
156
156
|
test_files: []
|