rudder 0.2.0 → 0.2.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: d88b73843f357d2fbcb932a6001f29e6c19e8740f592f9442ec18a7f5418e5a6
4
- data.tar.gz: f07cd0264b317dc201ae2730c59275cb018f95a6ce9f14999c5bedcadd21b8ba
3
+ metadata.gz: 39ee84dab847c0fac1bf85e085eabbd9fcea891b1b29152503158efc397f6033
4
+ data.tar.gz: 3c0026c08729a20548b6ea6faa0c4ba4f6eda4e26b315b378ee7e350f97391d6
5
5
  SHA512:
6
- metadata.gz: 92b3ccc2602db50143a90b68edcafaee418313a0e316f470afcaef364781712b893050d59402ea46b877f3d9a2f9c4fc54b187052921f3ba9448a5dd94c50688
7
- data.tar.gz: c5625a3bd60efa88b0a93a973281229f4d8b145fa67875535803f3fe7f66e641b999d2c8b54d0829fa2311d4b25589cc2dc62805c470b3085f4e5558f4e06ec6
6
+ metadata.gz: 80cd63add3b0b175922e030d4ca8daa7649ca85b8447b7f80b5d3cf0b17a9d73d29a208cfc7bbbb17dd8a8c65ae9b9e46c315f31ef480845a13d2b1934b6a223
7
+ data.tar.gz: dfb5be4e80d015abf81ab5d0c7505daba581821d257a05b7fbecac1b422c27f27dd2c952b370e820654551df4be2e4173b06ec4451f78fff959fb5c4cad6302a
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented here.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.1] - 2019-08-16
9
+ ### Added
10
+ - Missing documentation link from gem specification
11
+
8
12
  ## [0.2.0] - 2019-08-08
9
13
  ### Added
10
14
  - Added helper methods `#merge_components` and `#include_pipeline`. Supports
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rudder
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
data/rudder.gemspec CHANGED
@@ -15,10 +15,11 @@ Gem::Specification.new do |spec|
15
15
  spec.license = 'MIT'
16
16
  # rubocop:disable Layout/AlignHash, Metrics/LineLength
17
17
  spec.metadata = {
18
- 'homepage_uri' => 'https://github.com/jhmcstanton/rudder',
19
- 'changelog_uri' => "https://github.com/jhmcstanton/rudder/blob/#{Rudder::VERSION}/CHANGELOG.md",
20
- 'source_code_uri' => 'https://github.com/jhmcstanton/rudder',
21
- 'bug_tracker_uri' => 'https://github.com/jhmcstanton/rudder/issues'
18
+ 'homepage_uri' => 'https://github.com/jhmcstanton/rudder',
19
+ 'changelog_uri' => "https://github.com/jhmcstanton/rudder/blob/#{Rudder::VERSION}/CHANGELOG.md",
20
+ 'source_code_uri' => 'https://github.com/jhmcstanton/rudder',
21
+ 'bug_tracker_uri' => 'https://github.com/jhmcstanton/rudder/issues',
22
+ 'documentation_uri' => "https://www.rubydoc.info/gems/rudder/#{Rudder::VERSION}"
22
23
  }
23
24
  # rubocop:enable Layout/AlignHash, Metrics/LineLength
24
25
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rudder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim McStanton
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-08-09 00:00:00.000000000 Z
11
+ date: 2019-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -168,9 +168,10 @@ licenses:
168
168
  - MIT
169
169
  metadata:
170
170
  homepage_uri: https://github.com/jhmcstanton/rudder
171
- changelog_uri: https://github.com/jhmcstanton/rudder/blob/0.2.0/CHANGELOG.md
171
+ changelog_uri: https://github.com/jhmcstanton/rudder/blob/0.2.1/CHANGELOG.md
172
172
  source_code_uri: https://github.com/jhmcstanton/rudder
173
173
  bug_tracker_uri: https://github.com/jhmcstanton/rudder/issues
174
+ documentation_uri: https://www.rubydoc.info/gems/rudder/0.2.1
174
175
  post_install_message:
175
176
  rdoc_options: []
176
177
  require_paths:
@@ -186,8 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
187
  - !ruby/object:Gem::Version
187
188
  version: '0'
188
189
  requirements: []
189
- rubyforge_project:
190
- rubygems_version: 2.7.6
190
+ rubygems_version: 3.0.3
191
191
  signing_key:
192
192
  specification_version: 4
193
193
  summary: Provides a DSL for building Concourse CI pipelines.