pipedream 0.4.0 → 0.4.1
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 +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +5 -1
- data/lib/pipedream/dsl/pipeline/codebuild.rb +0 -14
- data/lib/pipedream/version.rb +1 -1
- data/lib/template/.pipedream/README.md +25 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef820b906a5752dea6cdd908c5cbe2cf7232a615e6fd55de09bfb39c2b191287
|
4
|
+
data.tar.gz: d942456f3b94030c27e06d4f45c87a6769c96b2d3dbdf306f1c519a9ff749c15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 441bc77a89064175e7176a6cbc5943c533aac752ad63bf939dcf4eb54a2116bba192dd3a23a8ad7cf8ee0ccf0368a1078efe94b367896de2a1aa6bff23ac4ce8
|
7
|
+
data.tar.gz: 597886421bf9639ea9ecf0f85a1a4f555a4bb1ceeb5887cb9d135a72aade6ea50b9d381829223271ba3f579c6059d26afe3f24f4b62ffdcf072448054249feb9
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [0.4.1]
|
7
|
+
- remove codebuild_prefix and codebuild_suffix helpers
|
8
|
+
|
6
9
|
## [0.4.0]
|
7
10
|
- rename to pipedream
|
8
11
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
|
1
|
+
<div align="center">
|
2
|
+
<a href="http://pipedream.run"><img src="https://raw.githubusercontent.com/tongueroo/pipedream/master/docs/img/logos/pipedream-with-text.png" /></a>
|
3
|
+
</div>
|
4
|
+
|
5
|
+
# Pipe Dream
|
2
6
|
|
3
7
|

|
4
8
|
[](http://badge.fury.io/rb/pipedream)
|
@@ -18,7 +18,6 @@ module Pipedream::Dsl::Pipeline
|
|
18
18
|
actions = projects.map do |item|
|
19
19
|
if item.is_a?(String)
|
20
20
|
name = item.underscore.camelize
|
21
|
-
project_name = adjusted_project_name(item) # add prefix and suffix
|
22
21
|
default.deep_merge(
|
23
22
|
name: name,
|
24
23
|
configuration: { project_name: project_name },
|
@@ -40,18 +39,5 @@ module Pipedream::Dsl::Pipeline
|
|
40
39
|
|
41
40
|
action(*actions)
|
42
41
|
end
|
43
|
-
|
44
|
-
def codebuild_prefix(v)
|
45
|
-
@codebuild_prefix = v
|
46
|
-
end
|
47
|
-
|
48
|
-
def codebuild_suffix(v)
|
49
|
-
@codebuild_suffix = v
|
50
|
-
end
|
51
|
-
|
52
|
-
private
|
53
|
-
def adjusted_project_name(name)
|
54
|
-
[@codebuild_prefix, name, @codebuild_suffix].compact.join
|
55
|
-
end
|
56
42
|
end
|
57
43
|
end
|
data/lib/pipedream/version.rb
CHANGED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Pipedream Files
|
2
|
+
|
3
|
+
The files in folder are used by pipedream to build AWS CodePipeline pipelines. For more info, check out the [pipedream docs](https://pipedream.run). Here's a quick start.
|
4
|
+
|
5
|
+
## Install Tool
|
6
|
+
|
7
|
+
gem install pipedream
|
8
|
+
|
9
|
+
This installs both the `pipe` and `pipedream` commands. They do the same thing, the `pipe` command is just shorter to type.
|
10
|
+
|
11
|
+
## Update Project
|
12
|
+
|
13
|
+
To update the CodePipeline pipelines:
|
14
|
+
|
15
|
+
pipedream deploy demo
|
16
|
+
|
17
|
+
## Start a Execution
|
18
|
+
|
19
|
+
To start a CodePipeline execution:
|
20
|
+
|
21
|
+
pipedream start demo
|
22
|
+
|
23
|
+
To specify a branch:
|
24
|
+
|
25
|
+
pipedream start demo -b feature
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pipedream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
@@ -299,6 +299,7 @@ files:
|
|
299
299
|
- lib/pipedream/update.rb
|
300
300
|
- lib/pipedream/version.rb
|
301
301
|
- lib/pipedream/webhook.rb
|
302
|
+
- lib/template/.pipedream/README.md
|
302
303
|
- lib/template/.pipedream/pipeline.rb.tt
|
303
304
|
- lib/template/.pipedream/schedule.rb
|
304
305
|
- lib/template/.pipedream/settings.yml
|