hammer_cli_foreman_webhooks 0.0.4 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3349e5ec869114bfd9b702fa6f1e43204ec39b63d47dd0a2557fdc071fab3e1
4
- data.tar.gz: 00424fc9386abcd61e9aee533b73b2dbce63dfafaf46cc5f59303e826b75455a
3
+ metadata.gz: 8c32069b51726bdc0a38870a0ac85ca8e99d9ae996f2ee2a0f6852879a03c587
4
+ data.tar.gz: f326251141da78713b28003586ac43bc9b412a8181fed48d63e0d78064dee2d9
5
5
  SHA512:
6
- metadata.gz: 81d6d4db570f2e88a9706cf79a579488b86d690848dacc52101ec3c45fd487b2643879bc2bb9e558f63764ecf7b31f9810111912668ec14f37b1bf6267c5bdda
7
- data.tar.gz: cdc9dcf879643d4d4aefbd7673393f8e9bda5d0e2035be834604bb6e408715f34772b90f2fea5b914b4d5a94a0f48e2e9b5edb6da2621e14bc67f5861a12c672
6
+ metadata.gz: a92a093ed8c099482a49028ee61be2a1889c216f42820d723d2c294cf3d0fb3672057f332ce9bb57edde88378ce6da0ab36cce7c99e0737a1a9b5662cd31222a
7
+ data.tar.gz: a1117115239b7a7eb5e6ba3bcb9ee7f7b43318fce6bdb20a8cf9b05d7fe9a067214e71616e8f04b1de088f3cb7649fb55eb552cab0d1bd6bd2de2e5a124ec91a
@@ -0,0 +1,28 @@
1
+ require 'hammer_cli/i18n'
2
+
3
+ module HammerCLIForemanWebhooks
4
+ module I18n
5
+ class LocaleDomain < HammerCLI::I18n::LocaleDomain
6
+ def translated_files
7
+ Dir.glob(File.join(__dir__, '..', '**', '*.rb'))
8
+ end
9
+
10
+ def locale_dir
11
+ File.join(__dir__, '..', '..', 'locale')
12
+ end
13
+
14
+ def domain_name
15
+ 'hammer_cli_foreman_webhooks'
16
+ end
17
+ end
18
+
19
+ class SystemLocaleDomain < LocaleDomain
20
+ def locale_dir
21
+ '/usr/share/locale'
22
+ end
23
+ end
24
+ end
25
+ end
26
+
27
+ domain = [HammerCLIForemanWebhooks::I18n::LocaleDomain.new, HammerCLIForemanWebhooks::I18n::SystemLocaleDomain.new].find { |d| d.available? }
28
+ HammerCLI::I18n.add_domain(domain) if domain
@@ -2,6 +2,6 @@
2
2
 
3
3
  module HammerCLIForemanWebhooks
4
4
  def self.version
5
- @version ||= Gem::Version.new '0.0.4'
5
+ @version ||= Gem::Version.new '0.2.0'
6
6
  end
7
7
  end
@@ -5,6 +5,7 @@ module HammerCLIForemanWebhooks
5
5
  require 'hammer_cli_foreman'
6
6
 
7
7
  require 'hammer_cli_foreman_webhooks/version'
8
+ require 'hammer_cli_foreman_webhooks/i18n'
8
9
  require 'hammer_cli_foreman_webhooks/command_extensions'
9
10
  require 'hammer_cli_foreman_webhooks/webhook'
10
11
  require 'hammer_cli_foreman_webhooks/webhook_template'
@@ -0,0 +1,137 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman-webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: hammer_cli_foreman_webhooks 0.1.0\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2024-11-11 20:09+0100\n"
11
+ "PO-Revision-Date: 2023-07-12 17:00+0000\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "Language: \n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
+
20
+ msgid ""
21
+ "File containing X509 Certification Authorities concatenated in PEM format"
22
+ msgstr ""
23
+
24
+ msgid "Id"
25
+ msgstr ""
26
+
27
+ msgid "Name"
28
+ msgstr ""
29
+
30
+ msgid "Target URL"
31
+ msgstr ""
32
+
33
+ msgid "Enabled"
34
+ msgstr ""
35
+
36
+ msgid "Event"
37
+ msgstr ""
38
+
39
+ msgid "HTTP Method"
40
+ msgstr ""
41
+
42
+ msgid "HTTP Content Type"
43
+ msgstr ""
44
+
45
+ msgid "Webhook Template"
46
+ msgstr ""
47
+
48
+ msgid "User"
49
+ msgstr ""
50
+
51
+ msgid "Verify SSL"
52
+ msgstr ""
53
+
54
+ msgid "Proxy Authorization"
55
+ msgstr ""
56
+
57
+ msgid "X509 Certification Authorities"
58
+ msgstr ""
59
+
60
+ msgid "HTTP Headers"
61
+ msgstr ""
62
+
63
+ msgid "Webhook [%{name}] created."
64
+ msgstr ""
65
+
66
+ msgid "Could not create the webhook"
67
+ msgstr ""
68
+
69
+ msgid "Webhook [%{name}] updated."
70
+ msgstr ""
71
+
72
+ msgid "Could not update the webhook"
73
+ msgstr ""
74
+
75
+ msgid "Webhook [%{name}] deleted."
76
+ msgstr ""
77
+
78
+ msgid "Could not delete the webhook"
79
+ msgstr ""
80
+
81
+ msgid "Description"
82
+ msgstr ""
83
+
84
+ msgid "Locked"
85
+ msgstr ""
86
+
87
+ msgid "Default"
88
+ msgstr ""
89
+
90
+ msgid "Template inputs"
91
+ msgstr ""
92
+
93
+ msgid "Required"
94
+ msgstr ""
95
+
96
+ msgid "Options"
97
+ msgstr ""
98
+
99
+ msgid "Webhook template cloned."
100
+ msgstr ""
101
+
102
+ msgid "Could not clone the webhook template"
103
+ msgstr ""
104
+
105
+ msgid ""
106
+ "Path to a file that contains the webhook template content including metadata"
107
+ msgstr ""
108
+
109
+ msgid "Imported webhook template successfully."
110
+ msgstr ""
111
+
112
+ msgid "Could not import the webhook template"
113
+ msgstr ""
114
+
115
+ msgid "View webhook template content"
116
+ msgstr ""
117
+
118
+ msgid "Webhook template [%{name}] created."
119
+ msgstr ""
120
+
121
+ msgid "Could not create the webhook template"
122
+ msgstr ""
123
+
124
+ msgid "Webhook template [%{name}] updated."
125
+ msgstr ""
126
+
127
+ msgid "Could not update the webhook template"
128
+ msgstr ""
129
+
130
+ msgid "Webhook template [%{name}] deleted."
131
+ msgstr ""
132
+
133
+ msgid "Could not delete the webhook template"
134
+ msgstr ""
135
+
136
+ msgid "The webhook template has been saved to %{path}."
137
+ msgstr ""
@@ -0,0 +1,152 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman-webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Claer <transiblu@claer.hammock.fr>, 2023
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2023
9
+ # 21966816214bc546c1fc8a185e75ca1c, 2023
10
+ # Amit Upadhye <aupadhye@redhat.com>, 2023
11
+ # Baptiste Agasse <baptiste.agasse@gmail.com>, 2023
12
+ # Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2024
13
+ #
14
+ #, fuzzy
15
+ msgid ""
16
+ msgstr ""
17
+ "Project-Id-Version: hammer_cli_foreman_webhooks 0.1.0\n"
18
+ "Report-Msgid-Bugs-To: \n"
19
+ "POT-Creation-Date: 2023-07-12 17:00+0000\n"
20
+ "PO-Revision-Date: 2023-10-05 11:06+0000\n"
21
+ "Last-Translator: Ewoud Kohl van Wijngaarden "
22
+ "<ewoud+transifex@kohlvanwijngaarden.nl>, 2024\n"
23
+ "Language-Team: French (https://app.transifex.com/foreman/teams/114/fr/)\n"
24
+ "MIME-Version: 1.0\n"
25
+ "Content-Type: text/plain; charset=UTF-8\n"
26
+ "Content-Transfer-Encoding: 8bit\n"
27
+ "Language: fr\n"
28
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
29
+ "1000000 == 0 ? 1 : 2;\n"
30
+
31
+ msgid ""
32
+ "File containing X509 Certification Authorities concatenated in PEM format"
33
+ msgstr ""
34
+ "Fichier contenant les autorités de certification X509 concaténées au format "
35
+ "PEM"
36
+
37
+ msgid "Id"
38
+ msgstr "Id"
39
+
40
+ msgid "Name"
41
+ msgstr "Nom"
42
+
43
+ msgid "Target URL"
44
+ msgstr "URL cible"
45
+
46
+ msgid "Enabled"
47
+ msgstr "Activé"
48
+
49
+ msgid "Event"
50
+ msgstr "Événement"
51
+
52
+ msgid "HTTP Method"
53
+ msgstr "Méthode HTTP"
54
+
55
+ msgid "HTTP Content Type"
56
+ msgstr "Type de contenu HTTP"
57
+
58
+ msgid "Webhook Template"
59
+ msgstr "Modèle de webhook"
60
+
61
+ msgid "User"
62
+ msgstr "Utilisateur"
63
+
64
+ msgid "Verify SSL"
65
+ msgstr "Vérifier SSL"
66
+
67
+ msgid "Proxy Authorization"
68
+ msgstr "Autorisation Proxy"
69
+
70
+ msgid "X509 Certification Authorities"
71
+ msgstr "Autorités de certification X509"
72
+
73
+ msgid "HTTP Headers"
74
+ msgstr "En-têtes HTTP"
75
+
76
+ msgid "Webhook [%{name}] created."
77
+ msgstr "Webhook [%{name} ] créé."
78
+
79
+ msgid "Could not create the webhook"
80
+ msgstr "Impossible de créer le webhook"
81
+
82
+ msgid "Webhook [%{name}] updated."
83
+ msgstr "Webhook [%{name} ] mis à jour."
84
+
85
+ msgid "Could not update the webhook"
86
+ msgstr "Impossible de mettre à jour le webhook"
87
+
88
+ msgid "Webhook [%{name}] deleted."
89
+ msgstr "Webhook [%{name} ] supprimé."
90
+
91
+ msgid "Could not delete the webhook"
92
+ msgstr "Impossible de supprimer le webhook"
93
+
94
+ msgid "Description"
95
+ msgstr "Description"
96
+
97
+ msgid "Locked"
98
+ msgstr "Verrouillé"
99
+
100
+ msgid "Default"
101
+ msgstr "Par défaut"
102
+
103
+ msgid "Template inputs"
104
+ msgstr "Entrées de modèle"
105
+
106
+ msgid "Required"
107
+ msgstr "Requis"
108
+
109
+ msgid "Options"
110
+ msgstr "Options"
111
+
112
+ msgid "Webhook template cloned."
113
+ msgstr "Modèle de Webhook cloné."
114
+
115
+ msgid "Could not clone the webhook template"
116
+ msgstr "Impossible de cloner le modèle de webhook"
117
+
118
+ msgid ""
119
+ "Path to a file that contains the webhook template content including metadata"
120
+ msgstr ""
121
+ "Chemin d'accès à un fichier qui contient le webhook, y compris les "
122
+ "métadonnées"
123
+
124
+ msgid "Imported webhook template successfully."
125
+ msgstr "Modèle de webhook importé avec succès."
126
+
127
+ msgid "Could not import the webhook template"
128
+ msgstr "Impossible de cloner le modèle de webhook"
129
+
130
+ msgid "View webhook template content"
131
+ msgstr "Afficher le contenu du modèle de webhook"
132
+
133
+ msgid "Webhook template [%{name}] created."
134
+ msgstr "Modèle de webhook [%{name} ] créé."
135
+
136
+ msgid "Could not create the webhook template"
137
+ msgstr "Impossible de créer le modèle de webhook"
138
+
139
+ msgid "Webhook template [%{name}] updated."
140
+ msgstr "Modèle de webhook [%{name} ] créé."
141
+
142
+ msgid "Could not update the webhook template"
143
+ msgstr "Impossible de mettre à jour le modèle de webhook"
144
+
145
+ msgid "Webhook template [%{name}] deleted."
146
+ msgstr "Modèle de webhook [%{name} ] supprimé."
147
+
148
+ msgid "Could not delete the webhook template"
149
+ msgstr "Impossible de supprimer le modèle de webhook"
150
+
151
+ msgid "The webhook template has been saved to %{path}."
152
+ msgstr "Le modèle de webhook a été enregistré dans%{path} ."
@@ -0,0 +1,180 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_webhooks 0.1.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2024-11-11 20:09+0100\n"
12
+ "PO-Revision-Date: 2024-11-11 20:09+0100\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
+
21
+ #: ../lib/hammer_cli_foreman_webhooks/command_extensions/webhook.rb:7
22
+ msgid "File containing X509 Certification Authorities concatenated in PEM format"
23
+ msgstr ""
24
+
25
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:9
26
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:9
27
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:24
28
+ msgid "Id"
29
+ msgstr ""
30
+
31
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:10
32
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:10
33
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:25
34
+ msgid "Name"
35
+ msgstr ""
36
+
37
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:11
38
+ msgid "Target URL"
39
+ msgstr ""
40
+
41
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:12
42
+ msgid "Enabled"
43
+ msgstr ""
44
+
45
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:20
46
+ msgid "Event"
47
+ msgstr ""
48
+
49
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:21
50
+ msgid "HTTP Method"
51
+ msgstr ""
52
+
53
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:22
54
+ msgid "HTTP Content Type"
55
+ msgstr ""
56
+
57
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:23
58
+ msgid "Webhook Template"
59
+ msgstr ""
60
+
61
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:24
62
+ msgid "User"
63
+ msgstr ""
64
+
65
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:25
66
+ msgid "Verify SSL"
67
+ msgstr ""
68
+
69
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:26
70
+ msgid "Proxy Authorization"
71
+ msgstr ""
72
+
73
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:27
74
+ msgid "X509 Certification Authorities"
75
+ msgstr ""
76
+
77
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:28
78
+ msgid "HTTP Headers"
79
+ msgstr ""
80
+
81
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:40
82
+ msgid "Webhook [%{name}] created."
83
+ msgstr ""
84
+
85
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:41
86
+ msgid "Could not create the webhook"
87
+ msgstr ""
88
+
89
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:49
90
+ msgid "Webhook [%{name}] updated."
91
+ msgstr ""
92
+
93
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:50
94
+ msgid "Could not update the webhook"
95
+ msgstr ""
96
+
97
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:58
98
+ msgid "Webhook [%{name}] deleted."
99
+ msgstr ""
100
+
101
+ #: ../lib/hammer_cli_foreman_webhooks/webhook.rb:59
102
+ msgid "Could not delete the webhook"
103
+ msgstr ""
104
+
105
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:18
106
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:26
107
+ msgid "Description"
108
+ msgstr ""
109
+
110
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:19
111
+ msgid "Locked"
112
+ msgstr ""
113
+
114
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:20
115
+ msgid "Default"
116
+ msgstr ""
117
+
118
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:23
119
+ msgid "Template inputs"
120
+ msgstr ""
121
+
122
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:27
123
+ msgid "Required"
124
+ msgstr ""
125
+
126
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:28
127
+ msgid "Options"
128
+ msgstr ""
129
+
130
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:39
131
+ msgid "Webhook template cloned."
132
+ msgstr ""
133
+
134
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:40
135
+ msgid "Could not clone the webhook template"
136
+ msgstr ""
137
+
138
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:53
139
+ msgid "Path to a file that contains the webhook template content including metadata"
140
+ msgstr ""
141
+
142
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:60
143
+ msgid "Imported webhook template successfully."
144
+ msgstr ""
145
+
146
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:61
147
+ msgid "Could not import the webhook template"
148
+ msgstr ""
149
+
150
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:68
151
+ msgid "View webhook template content"
152
+ msgstr ""
153
+
154
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:78
155
+ msgid "Webhook template [%{name}] created."
156
+ msgstr ""
157
+
158
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:79
159
+ msgid "Could not create the webhook template"
160
+ msgstr ""
161
+
162
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:85
163
+ msgid "Webhook template [%{name}] updated."
164
+ msgstr ""
165
+
166
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:86
167
+ msgid "Could not update the webhook template"
168
+ msgstr ""
169
+
170
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:92
171
+ msgid "Webhook template [%{name}] deleted."
172
+ msgstr ""
173
+
174
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:93
175
+ msgid "Could not delete the webhook template"
176
+ msgstr ""
177
+
178
+ #: ../lib/hammer_cli_foreman_webhooks/webhook_template.rb:103
179
+ msgid "The webhook template has been saved to %{path}."
180
+ msgstr ""
@@ -0,0 +1,143 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman-webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2023
8
+ # Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2024
9
+ #
10
+ #, fuzzy
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: hammer_cli_foreman_webhooks 0.1.0\n"
14
+ "Report-Msgid-Bugs-To: \n"
15
+ "POT-Creation-Date: 2023-07-12 17:00+0000\n"
16
+ "PO-Revision-Date: 2023-10-05 11:06+0000\n"
17
+ "Last-Translator: Ewoud Kohl van Wijngaarden "
18
+ "<ewoud+transifex@kohlvanwijngaarden.nl>, 2024\n"
19
+ "Language-Team: Japanese (https://app.transifex.com/foreman/teams/114/ja/)\n"
20
+ "MIME-Version: 1.0\n"
21
+ "Content-Type: text/plain; charset=UTF-8\n"
22
+ "Content-Transfer-Encoding: 8bit\n"
23
+ "Language: ja\n"
24
+ "Plural-Forms: nplurals=1; plural=0;\n"
25
+
26
+ msgid ""
27
+ "File containing X509 Certification Authorities concatenated in PEM format"
28
+ msgstr "PEM 形式で連結された X509 認証局を含むファイル"
29
+
30
+ msgid "Id"
31
+ msgstr "ID"
32
+
33
+ msgid "Name"
34
+ msgstr "名前"
35
+
36
+ msgid "Target URL"
37
+ msgstr "ターゲット URL"
38
+
39
+ msgid "Enabled"
40
+ msgstr "有効化済み"
41
+
42
+ msgid "Event"
43
+ msgstr "イベント"
44
+
45
+ msgid "HTTP Method"
46
+ msgstr "HTTP メソッド"
47
+
48
+ msgid "HTTP Content Type"
49
+ msgstr "HTTP コンテンツタイプ"
50
+
51
+ msgid "Webhook Template"
52
+ msgstr "Webhook テンプレート"
53
+
54
+ msgid "User"
55
+ msgstr "ユーザー"
56
+
57
+ msgid "Verify SSL"
58
+ msgstr "SSL の確認"
59
+
60
+ msgid "Proxy Authorization"
61
+ msgstr "プロキシー認可"
62
+
63
+ msgid "X509 Certification Authorities"
64
+ msgstr "X509 証明機関"
65
+
66
+ msgid "HTTP Headers"
67
+ msgstr "HTTP ヘッダー"
68
+
69
+ msgid "Webhook [%{name}] created."
70
+ msgstr "Webhook [%{name}] を作成しました。"
71
+
72
+ msgid "Could not create the webhook"
73
+ msgstr "Webhook を作成できませんでした"
74
+
75
+ msgid "Webhook [%{name}] updated."
76
+ msgstr "Webhook [%{name}] を更新しました。"
77
+
78
+ msgid "Could not update the webhook"
79
+ msgstr "Webhook を更新できませんでした"
80
+
81
+ msgid "Webhook [%{name}] deleted."
82
+ msgstr "Webhook [%{name}] を削除しました。"
83
+
84
+ msgid "Could not delete the webhook"
85
+ msgstr "Webhook を削除できませんでした"
86
+
87
+ msgid "Description"
88
+ msgstr "説明"
89
+
90
+ msgid "Locked"
91
+ msgstr "ロック"
92
+
93
+ msgid "Default"
94
+ msgstr "デフォルト"
95
+
96
+ msgid "Template inputs"
97
+ msgstr "テンプレート入力"
98
+
99
+ msgid "Required"
100
+ msgstr "必須"
101
+
102
+ msgid "Options"
103
+ msgstr "オプション"
104
+
105
+ msgid "Webhook template cloned."
106
+ msgstr "Webhook テンプレートのクローンを作成しました。"
107
+
108
+ msgid "Could not clone the webhook template"
109
+ msgstr "Webhook テンプレートのクローンを作成できませんでした"
110
+
111
+ msgid ""
112
+ "Path to a file that contains the webhook template content including metadata"
113
+ msgstr "メタデータなどの Webhook テンプレートコンテンツを含むファイルへのパス"
114
+
115
+ msgid "Imported webhook template successfully."
116
+ msgstr "Webhook テンプレートが正常にインポートされました。"
117
+
118
+ msgid "Could not import the webhook template"
119
+ msgstr "Webhook テンプレートをインポートできませんでした"
120
+
121
+ msgid "View webhook template content"
122
+ msgstr "Webhook テンプレートコンテンツの表示"
123
+
124
+ msgid "Webhook template [%{name}] created."
125
+ msgstr "Webhook テンプレート [%{name}] を作成しました。"
126
+
127
+ msgid "Could not create the webhook template"
128
+ msgstr "Webhook テンプレートを作成できませんでした"
129
+
130
+ msgid "Webhook template [%{name}] updated."
131
+ msgstr "Webhook テンプレート [%{name}] を更新しました。"
132
+
133
+ msgid "Could not update the webhook template"
134
+ msgstr "Webhook テンプレートを更新できませんでした"
135
+
136
+ msgid "Webhook template [%{name}] deleted."
137
+ msgstr "Webhook テンプレート [%{name}] を削除しました。"
138
+
139
+ msgid "Could not delete the webhook template"
140
+ msgstr "Webhook テンプレートを削除できませんでした"
141
+
142
+ msgid "The webhook template has been saved to %{path}."
143
+ msgstr "Webhook テンプレートが %{path} に保存されました。"
@@ -0,0 +1,144 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman-webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2023
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: hammer_cli_foreman_webhooks 0.1.0\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "POT-Creation-Date: 2023-07-12 17:00+0000\n"
15
+ "PO-Revision-Date: 2023-10-05 11:06+0000\n"
16
+ "Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2023\n"
17
+ "Language-Team: Georgian (https://app.transifex.com/foreman/teams/114/ka/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: ka\n"
22
+ "Plural-Forms: nplurals=2; plural=(n!=1);\n"
23
+
24
+ msgid ""
25
+ "File containing X509 Certification Authorities concatenated in PEM format"
26
+ msgstr ""
27
+ "ფაილი, რომელიც PEM ფორმატში გაერთიანებულ X509 სერტიფიკატის ავტორიტეტებს "
28
+ "შეიცავს"
29
+
30
+ msgid "Id"
31
+ msgstr "Id"
32
+
33
+ msgid "Name"
34
+ msgstr "სახელი"
35
+
36
+ msgid "Target URL"
37
+ msgstr "სამიზნე URL"
38
+
39
+ msgid "Enabled"
40
+ msgstr "ჩაირთო"
41
+
42
+ msgid "Event"
43
+ msgstr "მოვლენა"
44
+
45
+ msgid "HTTP Method"
46
+ msgstr "HTTP მეთოდი"
47
+
48
+ msgid "HTTP Content Type"
49
+ msgstr "HTTP შემცველობის ტიპი"
50
+
51
+ msgid "Webhook Template"
52
+ msgstr "ვებჰუკის შაბლონი"
53
+
54
+ msgid "User"
55
+ msgstr "მომხმარებელი"
56
+
57
+ msgid "Verify SSL"
58
+ msgstr "SSL-ის შემოწმება"
59
+
60
+ msgid "Proxy Authorization"
61
+ msgstr "პროქსის ავტორიზაცია"
62
+
63
+ msgid "X509 Certification Authorities"
64
+ msgstr "X509 CA"
65
+
66
+ msgid "HTTP Headers"
67
+ msgstr "HTTP თავსართები"
68
+
69
+ msgid "Webhook [%{name}] created."
70
+ msgstr "ვებჰუკი [%{name}] შეიქმნა."
71
+
72
+ msgid "Could not create the webhook"
73
+ msgstr "ვებჰუკის შექმნა შეუძლებელია"
74
+
75
+ msgid "Webhook [%{name}] updated."
76
+ msgstr "ვებჰუკი [%{name}] განახლდა."
77
+
78
+ msgid "Could not update the webhook"
79
+ msgstr "ვებჰუკის განახლება შეუძლებელია"
80
+
81
+ msgid "Webhook [%{name}] deleted."
82
+ msgstr "ვებჰუკი [%{name}] წაიშალა."
83
+
84
+ msgid "Could not delete the webhook"
85
+ msgstr "ვებჰუკის წაშლა შეუძლებელია"
86
+
87
+ msgid "Description"
88
+ msgstr "აღწერა"
89
+
90
+ msgid "Locked"
91
+ msgstr "დაბლოკილია"
92
+
93
+ msgid "Default"
94
+ msgstr "ნაგულისხმევი"
95
+
96
+ msgid "Template inputs"
97
+ msgstr "შაბლონის შეყვანები"
98
+
99
+ msgid "Required"
100
+ msgstr "საჭიროა"
101
+
102
+ msgid "Options"
103
+ msgstr "მორგება"
104
+
105
+ msgid "Webhook template cloned."
106
+ msgstr "ვებჰუკის ნიმუში კლონირებულია."
107
+
108
+ msgid "Could not clone the webhook template"
109
+ msgstr "ვებჰუკის ნიმუშის დაკლონვა შეუძლებელია"
110
+
111
+ msgid ""
112
+ "Path to a file that contains the webhook template content including metadata"
113
+ msgstr ""
114
+ "ბილიკი ფაილამდე, რომელიც ვებჰუკის ნიმუშს შეიცავს, მეტამონაცემების ჩათვლით"
115
+
116
+ msgid "Imported webhook template successfully."
117
+ msgstr "ვებჰუკის ნიმუშის შემოტანა წარმატებულია."
118
+
119
+ msgid "Could not import the webhook template"
120
+ msgstr "ვებჰუკის ნიმუშის შემოტანა შეუძლებელია"
121
+
122
+ msgid "View webhook template content"
123
+ msgstr "ვებჰუკის ნიმუშის შემცველობის ნახვა"
124
+
125
+ msgid "Webhook template [%{name}] created."
126
+ msgstr "ვებჰუკის ნიმუში [%{name}] შეიქმნა."
127
+
128
+ msgid "Could not create the webhook template"
129
+ msgstr "ვებჰუკის ნიმუშის შექმნა შეუძლებელია"
130
+
131
+ msgid "Webhook template [%{name}] updated."
132
+ msgstr "ვებჰუკის ნიმუში [%{name}] განახლდა."
133
+
134
+ msgid "Could not update the webhook template"
135
+ msgstr "ვებჰუკის ნიმუშის განახლება შეუძლებელია"
136
+
137
+ msgid "Webhook template [%{name}] deleted."
138
+ msgstr "ვებჰუკის ნიმუში [%{name}] წაიშალა."
139
+
140
+ msgid "Could not delete the webhook template"
141
+ msgstr "ვებჰუკის ნიმუშის წაშლა შეუძლებელია"
142
+
143
+ msgid "The webhook template has been saved to %{path}."
144
+ msgstr "ვებჰუკის შაბლონი %{path}-ში ჩაიწერა."
@@ -0,0 +1,144 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman-webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2023
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2023
9
+ # Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2024
10
+ #
11
+ #, fuzzy
12
+ msgid ""
13
+ msgstr ""
14
+ "Project-Id-Version: hammer_cli_foreman_webhooks 0.1.0\n"
15
+ "Report-Msgid-Bugs-To: \n"
16
+ "POT-Creation-Date: 2023-07-12 17:00+0000\n"
17
+ "PO-Revision-Date: 2023-10-05 11:06+0000\n"
18
+ "Last-Translator: Ewoud Kohl van Wijngaarden "
19
+ "<ewoud+transifex@kohlvanwijngaarden.nl>, 2024\n"
20
+ "Language-Team: Korean (https://app.transifex.com/foreman/teams/114/ko/)\n"
21
+ "MIME-Version: 1.0\n"
22
+ "Content-Type: text/plain; charset=UTF-8\n"
23
+ "Content-Transfer-Encoding: 8bit\n"
24
+ "Language: ko\n"
25
+ "Plural-Forms: nplurals=1; plural=0;\n"
26
+
27
+ msgid ""
28
+ "File containing X509 Certification Authorities concatenated in PEM format"
29
+ msgstr "PEM 형식으로 연결된 X509 인증 기관을 포함하는 파일"
30
+
31
+ msgid "Id"
32
+ msgstr "ID"
33
+
34
+ msgid "Name"
35
+ msgstr "이름"
36
+
37
+ msgid "Target URL"
38
+ msgstr "대상 URL"
39
+
40
+ msgid "Enabled"
41
+ msgstr "활성화됨"
42
+
43
+ msgid "Event"
44
+ msgstr "이벤트 "
45
+
46
+ msgid "HTTP Method"
47
+ msgstr "HTTP 방식"
48
+
49
+ msgid "HTTP Content Type"
50
+ msgstr "HTTP 콘텐츠 유형"
51
+
52
+ msgid "Webhook Template"
53
+ msgstr "Webhook 템플릿"
54
+
55
+ msgid "User"
56
+ msgstr "사용자 "
57
+
58
+ msgid "Verify SSL"
59
+ msgstr "SSL 확인 "
60
+
61
+ msgid "Proxy Authorization"
62
+ msgstr "프록시 권한 부여"
63
+
64
+ msgid "X509 Certification Authorities"
65
+ msgstr "X509 인증 기관"
66
+
67
+ msgid "HTTP Headers"
68
+ msgstr "HTTP 헤더"
69
+
70
+ msgid "Webhook [%{name}] created."
71
+ msgstr "Webhook [%{name}]이/가 생성되었습니다"
72
+
73
+ msgid "Could not create the webhook"
74
+ msgstr "Webhook [%{name}]을 생성할 수 없습니다."
75
+
76
+ msgid "Webhook [%{name}] updated."
77
+ msgstr "Webhook [%{name}]이/가 업데이트되었습니다."
78
+
79
+ msgid "Could not update the webhook"
80
+ msgstr "Webhook을 업데이트할 수 없습니다."
81
+
82
+ msgid "Webhook [%{name}] deleted."
83
+ msgstr "Webhook [%{name}]이/가 삭제되었습니다."
84
+
85
+ msgid "Could not delete the webhook"
86
+ msgstr "Webhook을 삭제할 수 없습니다."
87
+
88
+ msgid "Description"
89
+ msgstr "설명 "
90
+
91
+ msgid "Locked"
92
+ msgstr "잠김"
93
+
94
+ msgid "Default"
95
+ msgstr "기본값"
96
+
97
+ msgid "Template inputs"
98
+ msgstr "템플릿 입력"
99
+
100
+ msgid "Required"
101
+ msgstr "필수 "
102
+
103
+ msgid "Options"
104
+ msgstr "옵션"
105
+
106
+ msgid "Webhook template cloned."
107
+ msgstr "Webhook 템플릿이 복제되었습니다."
108
+
109
+ msgid "Could not clone the webhook template"
110
+ msgstr "Webhook 템플릿을 복제할 수 없습니다."
111
+
112
+ msgid ""
113
+ "Path to a file that contains the webhook template content including metadata"
114
+ msgstr "메타데이터를 포함한 Webhook 템플릿 콘텐츠를 포함하는 파일의 경로"
115
+
116
+ msgid "Imported webhook template successfully."
117
+ msgstr "Webhook 템플릿을 성공적으로 가져왔습니다."
118
+
119
+ msgid "Could not import the webhook template"
120
+ msgstr "Webhook 템플릿을 가져올 수 없습니다."
121
+
122
+ msgid "View webhook template content"
123
+ msgstr "Webhook 템플릿 콘텐츠 보기"
124
+
125
+ msgid "Webhook template [%{name}] created."
126
+ msgstr "Webhook 템플릿 [%{name}]이/가 생성되었습니다."
127
+
128
+ msgid "Could not create the webhook template"
129
+ msgstr "Webhook 템플릿을 생성할 수 없습니다."
130
+
131
+ msgid "Webhook template [%{name}] updated."
132
+ msgstr "Webhook 템플릿 [%{name}]이/가 업데이트되었습니다."
133
+
134
+ msgid "Could not update the webhook template"
135
+ msgstr "Webhook 템플릿을 업데이트할 수 없습니다."
136
+
137
+ msgid "Webhook template [%{name}] deleted."
138
+ msgstr "Webhook 템플릿 [%{name}]이/가 삭제되었습니다."
139
+
140
+ msgid "Could not delete the webhook template"
141
+ msgstr "Webhook 템플릿을 삭제할 수 없습니다."
142
+
143
+ msgid "The webhook template has been saved to %{path}."
144
+ msgstr "Webhook 템플릿이 %{path}에 저장되었습니다."
@@ -0,0 +1,147 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman-webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2023
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2023
9
+ # tim123, 2023
10
+ # Amit Upadhye <aupadhye@redhat.com>, 2023
11
+ # Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2024
12
+ #
13
+ #, fuzzy
14
+ msgid ""
15
+ msgstr ""
16
+ "Project-Id-Version: hammer_cli_foreman_webhooks 0.1.0\n"
17
+ "Report-Msgid-Bugs-To: \n"
18
+ "POT-Creation-Date: 2023-07-12 17:00+0000\n"
19
+ "PO-Revision-Date: 2023-10-05 11:06+0000\n"
20
+ "Last-Translator: Ewoud Kohl van Wijngaarden "
21
+ "<ewoud+transifex@kohlvanwijngaarden.nl>, 2024\n"
22
+ "Language-Team: Chinese (China) (https://app.transifex.com/foreman/teams/114/"
23
+ "zh_CN/)\n"
24
+ "MIME-Version: 1.0\n"
25
+ "Content-Type: text/plain; charset=UTF-8\n"
26
+ "Content-Transfer-Encoding: 8bit\n"
27
+ "Language: zh_CN\n"
28
+ "Plural-Forms: nplurals=1; plural=0;\n"
29
+
30
+ msgid ""
31
+ "File containing X509 Certification Authorities concatenated in PEM format"
32
+ msgstr "包含 PEM 格式的 X509 认证颁发机构 (CA) 的文件"
33
+
34
+ msgid "Id"
35
+ msgstr "ID"
36
+
37
+ msgid "Name"
38
+ msgstr "名称"
39
+
40
+ msgid "Target URL"
41
+ msgstr "目标 URL"
42
+
43
+ msgid "Enabled"
44
+ msgstr "启用"
45
+
46
+ msgid "Event"
47
+ msgstr "事件"
48
+
49
+ msgid "HTTP Method"
50
+ msgstr "HTTP 方法"
51
+
52
+ msgid "HTTP Content Type"
53
+ msgstr "HTTP 內容类型"
54
+
55
+ msgid "Webhook Template"
56
+ msgstr "Webhook 模板"
57
+
58
+ msgid "User"
59
+ msgstr "用户"
60
+
61
+ msgid "Verify SSL"
62
+ msgstr "验证 SSL"
63
+
64
+ msgid "Proxy Authorization"
65
+ msgstr "代理授权"
66
+
67
+ msgid "X509 Certification Authorities"
68
+ msgstr "X509 认证颁发机构"
69
+
70
+ msgid "HTTP Headers"
71
+ msgstr "HTTP 标头"
72
+
73
+ msgid "Webhook [%{name}] created."
74
+ msgstr "Webhook [%{name}] 已创建。"
75
+
76
+ msgid "Could not create the webhook"
77
+ msgstr "无法创建 webhook"
78
+
79
+ msgid "Webhook [%{name}] updated."
80
+ msgstr "Webhook [%{name}] 已更新。"
81
+
82
+ msgid "Could not update the webhook"
83
+ msgstr "无法更新 webhook"
84
+
85
+ msgid "Webhook [%{name}] deleted."
86
+ msgstr "Webhook [%{name}] 已删除。"
87
+
88
+ msgid "Could not delete the webhook"
89
+ msgstr "无法删除 webhook"
90
+
91
+ msgid "Description"
92
+ msgstr "描述"
93
+
94
+ msgid "Locked"
95
+ msgstr "锁定"
96
+
97
+ msgid "Default"
98
+ msgstr "默认"
99
+
100
+ msgid "Template inputs"
101
+ msgstr "模板输入"
102
+
103
+ msgid "Required"
104
+ msgstr "必需的"
105
+
106
+ msgid "Options"
107
+ msgstr "选项"
108
+
109
+ msgid "Webhook template cloned."
110
+ msgstr "克隆 Webhook 模板。"
111
+
112
+ msgid "Could not clone the webhook template"
113
+ msgstr "无法克隆 webhook 模板"
114
+
115
+ msgid ""
116
+ "Path to a file that contains the webhook template content including metadata"
117
+ msgstr "包含 webhook 模板内容(包括元数据)的文件的路径"
118
+
119
+ msgid "Imported webhook template successfully."
120
+ msgstr "成功导入 Webhook 模板。"
121
+
122
+ msgid "Could not import the webhook template"
123
+ msgstr "无法导入 webhook 模板"
124
+
125
+ msgid "View webhook template content"
126
+ msgstr "查看 webhook 模板内容"
127
+
128
+ msgid "Webhook template [%{name}] created."
129
+ msgstr "创建 Webhook 模板 [%{name}]"
130
+
131
+ msgid "Could not create the webhook template"
132
+ msgstr "无法创建 webhook 模板"
133
+
134
+ msgid "Webhook template [%{name}] updated."
135
+ msgstr "更新 Webhook 模板 [%{name}]。"
136
+
137
+ msgid "Could not update the webhook template"
138
+ msgstr "无法更新 webhook 模板"
139
+
140
+ msgid "Webhook template [%{name}] deleted."
141
+ msgstr "删除 Webhook 模板 [%{name}]。"
142
+
143
+ msgid "Could not delete the webhook template"
144
+ msgstr "无法删除 webhook 模板"
145
+
146
+ msgid "The webhook template has been saved to %{path}."
147
+ msgstr "webhook 模板已被保存到 %{path}。"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli_foreman_webhooks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleh Fedorenko
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-08 00:00:00.000000000 Z
11
+ date: 2025-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hammer_cli_foreman
@@ -30,7 +30,7 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 4.0.0
33
- description:
33
+ description:
34
34
  email:
35
35
  - ofedoren@redhat.com
36
36
  executables: []
@@ -43,9 +43,23 @@ files:
43
43
  - lib/hammer_cli_foreman_webhooks.rb
44
44
  - lib/hammer_cli_foreman_webhooks/command_extensions.rb
45
45
  - lib/hammer_cli_foreman_webhooks/command_extensions/webhook.rb
46
+ - lib/hammer_cli_foreman_webhooks/i18n.rb
46
47
  - lib/hammer_cli_foreman_webhooks/version.rb
47
48
  - lib/hammer_cli_foreman_webhooks/webhook.rb
48
49
  - lib/hammer_cli_foreman_webhooks/webhook_template.rb
50
+ - locale/en/LC_MESSAGES/hammer_cli_foreman_webhooks.mo
51
+ - locale/en/hammer_cli_foreman_webhooks.po
52
+ - locale/fr/LC_MESSAGES/hammer_cli_foreman_webhooks.mo
53
+ - locale/fr/hammer_cli_foreman_webhooks.po
54
+ - locale/hammer_cli_foreman_webhooks.pot
55
+ - locale/ja/LC_MESSAGES/hammer_cli_foreman_webhooks.mo
56
+ - locale/ja/hammer_cli_foreman_webhooks.po
57
+ - locale/ka/LC_MESSAGES/hammer_cli_foreman_webhooks.mo
58
+ - locale/ka/hammer_cli_foreman_webhooks.po
59
+ - locale/ko/LC_MESSAGES/hammer_cli_foreman_webhooks.mo
60
+ - locale/ko/hammer_cli_foreman_webhooks.po
61
+ - locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_webhooks.mo
62
+ - locale/zh_CN/hammer_cli_foreman_webhooks.po
49
63
  - test/data/3.3/foreman_api.json
50
64
  - test/functional/test_helper.rb
51
65
  - test/functional/webhook_template_test.rb
@@ -53,9 +67,9 @@ files:
53
67
  - test/test_helper.rb
54
68
  homepage: https://github.com/theforeman/hammer-cli-foreman-webhooks
55
69
  licenses:
56
- - GPL-3.0
70
+ - GPL-3.0-only
57
71
  metadata: {}
58
- post_install_message:
72
+ post_install_message:
59
73
  rdoc_options: []
60
74
  require_paths:
61
75
  - lib
@@ -63,15 +77,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
77
  requirements:
64
78
  - - ">="
65
79
  - !ruby/object:Gem::Version
66
- version: '2.5'
80
+ version: '2.7'
81
+ - - "<"
82
+ - !ruby/object:Gem::Version
83
+ version: '4'
67
84
  required_rubygems_version: !ruby/object:Gem::Requirement
68
85
  requirements:
69
86
  - - ">="
70
87
  - !ruby/object:Gem::Version
71
88
  version: '0'
72
89
  requirements: []
73
- rubygems_version: 3.1.2
74
- signing_key:
90
+ rubygems_version: 3.2.33
91
+ signing_key:
75
92
  specification_version: 4
76
93
  summary: Foreman Webhooks plugin for Hammer CLI
77
94
  test_files: