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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1eb0de763402a41bcefac5aac42158fc5107e4cf773b6fa15712426ece38985f
4
- data.tar.gz: c4741176a480a08e8c651f1305038200c08dadaa2a328bf18a92b92ca0f3cd24
3
+ metadata.gz: 2eb2c09f57c92d8124ca69b4cd2eeb1dedb01290acd2c4b3b751f3831cefde08
4
+ data.tar.gz: f3df8627abbea3181cb0036dcfd3b5dd17fb81b9c97a70c8709de882d6f06e53
5
5
  SHA512:
6
- metadata.gz: b6bbf4e0d2c0ffb95ea55999e624fde5de72221116d1ecceafe5991588daf2f44a2b38ca561a06d5f252d09a3f60313c5640237f54fbab265891ce6ce6234300
7
- data.tar.gz: 0ad3de0e821e851bd55800d29d4752a58bee46e9ef28c4a494f9614624d8cda8bc4541e513c25176e2291ce2aa4b564efb72e9ba0f6b77983fd1463b8c93bb09
6
+ metadata.gz: 53cbfa19ac4a5ef1c2bd53b808c998943250bd855edf6a2dae431772fb9c6124952f2bb5d5ce07b6841a68471054b7a0aab70688f7a061b64b4cf7663f8f831e
7
+ data.tar.gz: 9d0408f51347c016d77bd28dd10c9d564c40dfab55c2f347201a660700af3d25d735a9ef1d9e2a7337e79fcddbf90e9452e8f68b628f726a48c22515d996b578
@@ -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
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ ## 0.1.1
4
+
5
+ * Refactor Pipeline::Builder specs
6
+
7
+ ## 0.1.0
8
+
9
+ * Initial commit and release
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- data-pipeline (0.1.0)
4
+ data-pipeline (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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
+ [![Build Status](https://travis-ci.com/cheeyeo/pipeline.svg?branch=master)](https://travis-ci.com/cheeyeo/pipeline) [![Maintainability](https://api.codeclimate.com/v1/badges/e5d2a69f540157c59a67/maintainability)](https://codeclimate.com/github/cheeyeo/pipeline/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/e5d2a69f540157c59a67/test_coverage)](https://codeclimate.com/github/cheeyeo/pipeline/test_coverage)
10
+
7
11
  ## Installation
8
12
 
9
13
  Add this line to your application's Gemfile:
@@ -1,3 +1,3 @@
1
1
  module Pipeline
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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