foreman-tasks 0.7.13 → 0.7.14
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/.gitignore +15 -0
- data/.tx/config +8 -0
- data/Gemfile +14 -0
- data/foreman-tasks.gemspec +34 -0
- data/lib/foreman_tasks/version.rb +1 -1
- data/locale/Makefile +60 -0
- data/locale/action_names.rb +7 -0
- data/locale/en/foreman_tasks.po +520 -0
- data/locale/foreman_tasks.pot +727 -0
- data/script/rails +8 -0
- metadata +22 -11
data/script/rails
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
5
|
+
ENGINE_PATH = File.expand_path('../../lib/foreman_tasks/engine', __FILE__)
|
6
|
+
|
7
|
+
require 'rails/all'
|
8
|
+
require 'rails/engine/commands'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman-tasks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Nečas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-02-
|
11
|
+
date: 2016-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dynflow
|
@@ -89,8 +89,13 @@ email:
|
|
89
89
|
- inecas@redhat.com
|
90
90
|
executables: []
|
91
91
|
extensions: []
|
92
|
-
extra_rdoc_files:
|
92
|
+
extra_rdoc_files:
|
93
|
+
- README.md
|
94
|
+
- LICENSE
|
93
95
|
files:
|
96
|
+
- ".gitignore"
|
97
|
+
- ".tx/config"
|
98
|
+
- Gemfile
|
94
99
|
- LICENSE
|
95
100
|
- README.md
|
96
101
|
- app/assets/javascripts/trigger_form.js
|
@@ -180,6 +185,7 @@ files:
|
|
180
185
|
- deploy/foreman-tasks.init
|
181
186
|
- deploy/foreman-tasks.service
|
182
187
|
- deploy/foreman-tasks.sysconfig
|
188
|
+
- foreman-tasks.gemspec
|
183
189
|
- lib/foreman-tasks.rb
|
184
190
|
- lib/foreman_tasks.rb
|
185
191
|
- lib/foreman_tasks/authorizer_ext.rb
|
@@ -198,6 +204,11 @@ files:
|
|
198
204
|
- lib/foreman_tasks/triggers.rb
|
199
205
|
- lib/foreman_tasks/version.rb
|
200
206
|
- lib/tasks/gettext.rake
|
207
|
+
- locale/Makefile
|
208
|
+
- locale/action_names.rb
|
209
|
+
- locale/en/foreman_tasks.po
|
210
|
+
- locale/foreman_tasks.pot
|
211
|
+
- script/rails
|
201
212
|
- test/controllers/api/recurring_logics_controller_test.rb
|
202
213
|
- test/controllers/api/tasks_controller_test.rb
|
203
214
|
- test/factories/recurring_logic_factory.rb
|
@@ -238,19 +249,19 @@ signing_key:
|
|
238
249
|
specification_version: 4
|
239
250
|
summary: Foreman plugin for showing tasks information for resoruces and users
|
240
251
|
test_files:
|
241
|
-
- test/helpers/foreman_tasks/tasks_helper_test.rb
|
242
|
-
- test/support/dummy_dynflow_action.rb
|
243
|
-
- test/support/dummy_proxy_action.rb
|
244
|
-
- test/foreman_tasks_test_helper.rb
|
245
252
|
- test/controllers/api/recurring_logics_controller_test.rb
|
246
253
|
- test/controllers/api/tasks_controller_test.rb
|
254
|
+
- test/factories/recurring_logic_factory.rb
|
247
255
|
- test/factories/task_factory.rb
|
248
256
|
- test/factories/triggering_factory.rb
|
249
|
-
- test/
|
257
|
+
- test/foreman_tasks_test_helper.rb
|
258
|
+
- test/helpers/foreman_tasks/tasks_helper_test.rb
|
259
|
+
- test/support/dummy_dynflow_action.rb
|
260
|
+
- test/support/dummy_proxy_action.rb
|
261
|
+
- test/unit/actions/action_with_sub_plans_test.rb
|
262
|
+
- test/unit/actions/proxy_action_test.rb
|
250
263
|
- test/unit/cleaner_test.rb
|
251
264
|
- test/unit/dynflow_console_authorizer_test.rb
|
252
265
|
- test/unit/recurring_logic_test.rb
|
253
|
-
- test/unit/actions/proxy_action_test.rb
|
254
|
-
- test/unit/actions/action_with_sub_plans_test.rb
|
255
|
-
- test/unit/task_test.rb
|
256
266
|
- test/unit/task_groups_test.rb
|
267
|
+
- test/unit/task_test.rb
|