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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b5b217e3b797c3eac2f721a6637b1997e218222a6d316417c620e05145c1bfe6
4
- data.tar.gz: '094476da993744df62614378996cc12481c911f6e39dc8a89a1baeee4030475d'
3
+ metadata.gz: ef820b906a5752dea6cdd908c5cbe2cf7232a615e6fd55de09bfb39c2b191287
4
+ data.tar.gz: d942456f3b94030c27e06d4f45c87a6769c96b2d3dbdf306f1c519a9ff749c15
5
5
  SHA512:
6
- metadata.gz: 55404fd9abf77988a759c6b8d51a0b9dd64299ec12a03cda6836900b7cba5c11937fcd359bbeb14dd335b7fe4b30b77dfed9cd471669f5c7d376eb8e1f4055c5
7
- data.tar.gz: f40b5c333e86b9b662f7863ef803dddd6737c7896931930305ebe638eff0643666737ff4f0001acf3d69f481cd0ac949be6df05f312dc884a621066d1057c653
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pipedream (0.3.3)
4
+ pipedream (0.4.0)
5
5
  activesupport
6
6
  aws-sdk-cloudformation
7
7
  aws-sdk-codepipeline
data/README.md CHANGED
@@ -1,4 +1,8 @@
1
- # Pipedreamline
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
  ![Build Status](https://codebuild.us-west-2.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiWk1FM0dldzE5MUM5R3VqVGxxTmRFb1JGNnkxQjJpTDYvajYrQk91YzErNjdNc1VYVElHM3V5ZEJXcStyMmZVc210WG8vUURSV2JST0ZpSWc5Y0pYR3k0PSIsIml2UGFyYW1ldGVyU3BlYyI6IldvYXhLMU8yS2pQdVRKbEoiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master)
4
8
  [![Gem Version](https://badge.fury.io/rb/pipedream.png)](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
@@ -1,3 +1,3 @@
1
1
  module Pipedream
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
@@ -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.0
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