pipely 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -5
- data/lib/pipely/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46d3c85b72894b55afd79cade2fdddb5bbdec0be
|
4
|
+
data.tar.gz: 404e821a844818c67e3b2db878a4d8c44da94d05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5dc731bb0c177dd4c4ed93bab5b6ff879edd2900cddf6d3b8dacece16b84b8dd6c364c939d877408ee41540b2c8634c3540d365e5a72a7c4cf69f7bf0ce236a
|
7
|
+
data.tar.gz: d1048b06e7de79c80d28d5de279fe78ad6bebf09181d3c1d15121eed925eeafef9548f0ab347a99c471e0effd41e65f5a2680ce50403819f63317ae9395887f3
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@ pipely
|
|
2
2
|
======
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/pipely.png)](http://badge.fury.io/rb/pipely) [![Build Status](https://travis-ci.org/swipely/pipely.png?branch=master)](https://travis-ci.org/swipely/pipely) [![Code Climate](https://codeclimate.com/repos/524b941156b1025b6c08a96a/badges/c0ad2bbec610f1d0f0f7/gpa.png)](https://codeclimate.com/repos/524b941156b1025b6c08a96a/feed)
|
4
4
|
|
5
|
-
|
5
|
+
Build, deploy, and visualize pipeline definitions for AWS Data Pipeline
|
6
6
|
|
7
7
|
"AWS Data Pipeline is a web service that you can use to automate the movement and transformation of data. With AWS Data Pipeline, you can define data-driven workflows, so that tasks can be dependent on the successful completion of previous tasks."
|
8
8
|
|
@@ -24,10 +24,19 @@ Into environment gems from rubygems.org:
|
|
24
24
|
|
25
25
|
## Usage
|
26
26
|
|
27
|
-
|
27
|
+
### Rake Tasks
|
28
|
+
|
29
|
+
Coming soon.
|
30
|
+
|
31
|
+
rake definition # Graphs the full pipeline definition using Graphviz
|
32
|
+
rake deploy # Deploy pipeline
|
33
|
+
rake graph # Graphs the full pipeline definition using Graphviz
|
34
|
+
rake upload_steps # Upload Data Pipeline steps to S3
|
28
35
|
|
29
36
|
### Command-line Interface
|
30
37
|
|
38
|
+
(If you used the Gemfile install, prefix the below commands with `bundle exec`.)
|
39
|
+
|
31
40
|
To render a JSON pipeline definition as a PNG graph visualization:
|
32
41
|
|
33
42
|
pipely definition.json
|
@@ -36,6 +45,3 @@ To specify the output path for PNG files:
|
|
36
45
|
|
37
46
|
pipely -o path/to/graph/pngs definition.json
|
38
47
|
|
39
|
-
### Rake Tasks
|
40
|
-
|
41
|
-
Coming soon.
|
data/lib/pipely/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pipely
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Gillooly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-graphviz
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.
|
61
|
+
version: 1.20.0
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 1.
|
68
|
+
version: 1.20.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: unf
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|