data-pipeline 0.1.0 → 0.1.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/.travis.yml +10 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/lib/pipeline/version.rb +1 -1
- 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: 2eb2c09f57c92d8124ca69b4cd2eeb1dedb01290acd2c4b3b751f3831cefde08
|
|
4
|
+
data.tar.gz: f3df8627abbea3181cb0036dcfd3b5dd17fb81b9c97a70c8709de882d6f06e53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53cbfa19ac4a5ef1c2bd53b808c998943250bd855edf6a2dae431772fb9c6124952f2bb5d5ce07b6841a68471054b7a0aab70688f7a061b64b4cf7663f8f831e
|
|
7
|
+
data.tar.gz: 9d0408f51347c016d77bd28dd10c9d564c40dfab55c2f347201a660700af3d25d735a9ef1d9e2a7337e79fcddbf90e9452e8f68b628f726a48c22515d996b578
|
data/.travis.yml
CHANGED
|
@@ -5,3 +5,13 @@ cache: bundler
|
|
|
5
5
|
rvm:
|
|
6
6
|
- 2.5.1
|
|
7
7
|
before_install: gem install bundler -v 1.16.4
|
|
8
|
+
notifications:
|
|
9
|
+
- false
|
|
10
|
+
before_script:
|
|
11
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
12
|
+
- chmod +x ./cc-test-reporter
|
|
13
|
+
- ./cc-test-reporter before-build
|
|
14
|
+
script:
|
|
15
|
+
- bundle exec rspec
|
|
16
|
+
after_script:
|
|
17
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
data/CHANGELOG.md
ADDED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -4,6 +4,10 @@ Pipeline is a gem that enables you to build `operations` to transform data from
|
|
|
4
4
|
|
|
5
5
|
This is based on the [chain-of-responsibility pattern](https://en.wikipedia.org/wiki/Chain-of-responsibility_pattern)
|
|
6
6
|
|
|
7
|
+
## Status
|
|
8
|
+
|
|
9
|
+
[](https://travis-ci.com/cheeyeo/pipeline) [](https://codeclimate.com/github/cheeyeo/pipeline/maintainability) [](https://codeclimate.com/github/cheeyeo/pipeline/test_coverage)
|
|
10
|
+
|
|
7
11
|
## Installation
|
|
8
12
|
|
|
9
13
|
Add this line to your application's Gemfile:
|
data/lib/pipeline/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: data-pipeline
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chee Yeo
|
|
@@ -90,6 +90,7 @@ files:
|
|
|
90
90
|
- ".gitignore"
|
|
91
91
|
- ".rspec"
|
|
92
92
|
- ".travis.yml"
|
|
93
|
+
- CHANGELOG.md
|
|
93
94
|
- CODE_OF_CONDUCT.md
|
|
94
95
|
- Gemfile
|
|
95
96
|
- Gemfile.lock
|