foreman_pipeline 0.0.7 → 0.0.8
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 +8 -8
- data/lib/foreman_pipeline/version.rb +1 -1
- data/script/rails +8 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZjU5NWJlYzAzODFmNjc1YzYwNDAyYjRmMzg2OTc0NDM5MDdkNmNlOA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTE5YjkzZGRhYmY1YjRmNGZiYTAyZTBhYTZmNmI1YWQxODY1ZjIyNw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZDhlODMyN2ZlYTJjYTc3MGQ0YzZmMDIzNzI0ZGFmMjllZThmNDA3YzcwYTc2
|
|
10
|
+
YzhkNTQ2MmIzZTQxYjMzOThiOGFjNzNlMTgwNTQ5NDliNWU3YzQyMDRkN2Jl
|
|
11
|
+
Zjg0YjY2ZjllOWMxN2ZiMzQyZjVhMTRmNzdkZDUxYmQyZDE5NGM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MjE0Y2JhYjVhYzdlMTg4NjZhOWIxZTJiNzI4YWQ3MTllNzkyODM3Yzc4OTk4
|
|
14
|
+
OGExNGNmMWQ2NzU2ODc2NTQ0OWU2NTZkMzkyZGU2ZGY4M2UwZGEyMDkxZTdj
|
|
15
|
+
YmUwODQ5NDgyNzk2MGFmMmU0NTYwMzI3ZjI0NjZjYzE0NDNkZDA=
|
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_pipeline/engine', __FILE__)
|
|
6
|
+
|
|
7
|
+
require 'rails/all'
|
|
8
|
+
require 'rails/engine/commands'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: foreman_pipeline
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ondřej Pražák
|
|
@@ -301,6 +301,7 @@ files:
|
|
|
301
301
|
- lib/foreman_pipeline/tasks/foreman_pipeline_seed.rake
|
|
302
302
|
- lib/foreman_pipeline/tasks/foreman_pipeline_test.rake
|
|
303
303
|
- lib/foreman_pipeline/version.rb
|
|
304
|
+
- script/rails
|
|
304
305
|
- test/factories/hostgroup_factory.rb
|
|
305
306
|
- test/factories/jenkins_instance_related_factory.rb
|
|
306
307
|
- test/foreman_pipeline_plugin_test_helper.rb
|