train-habitat 0.2.12 → 0.2.13

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: 2913079dec63f9db3973d1e38ed65db5be4469da068111b2a59b0c40059851e5
4
- data.tar.gz: 697ede6866c1228258de1a7af25a91798f65f0281f3c44590dc62d00995f8e8b
3
+ metadata.gz: c0a5bc6a684e3ce47ade95c8d0ac57f13b6b34e6170535f8b236dd7802a67baa
4
+ data.tar.gz: 040f7d37ae4507b97f21f8503f5a6f4a46f49d35382d144b438c496f9bb090d2
5
5
  SHA512:
6
- metadata.gz: aa03009352c842b7c4a1a31b18f016f01b58501ffbf8cbc9a7d18ce06206e8dd463e659a5fd958043ca707b059770f1c3b92747fbecfa8dc1c589fc2716a460c
7
- data.tar.gz: 25bdf2939a18613da6d0b2f4522e10069bfddcb68a75173f48ca62ab029bc4745162c5f16cd4da3c05fe2fa152ccf5809b9ec525e067b88ba85e784456762578
6
+ metadata.gz: 66fb72685dde4bbe4e9cecb47e9e87ba1b56a76a8e54c265dd4efc45e4be49e759e6339362200aba8f0585894c89c26f58bd3b1f04078af1a62a7f005f9b66a9
7
+ data.tar.gz: e1fd45ae140b06ac83a2924ef17870fe977c7de30a08fd495d6ac6a376689419eff84bbc18b89912740fa3f1516107200e3135ab253998cea6f62a332a865750
data/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2018 Chef Software Inc.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TrainPlugins
4
4
  module Habitat
5
- VERSION = "0.2.12"
5
+ VERSION = "0.2.13"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: train-habitat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.12
4
+ version: 0.2.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chef InSpec Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-31 00:00:00.000000000 Z
11
+ date: 2019-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -45,7 +45,7 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - Gemfile
48
+ - LICENSE
49
49
  - lib/train-habitat.rb
50
50
  - lib/train-habitat/connection.rb
51
51
  - lib/train-habitat/httpgateway.rb
@@ -53,7 +53,6 @@ files:
53
53
  - lib/train-habitat/platform.rb
54
54
  - lib/train-habitat/transport.rb
55
55
  - lib/train-habitat/version.rb
56
- - train-habitat.gemspec
57
56
  homepage: https://github.com/inspec/train-habitat
58
57
  licenses:
59
58
  - Apache-2.0
data/Gemfile DELETED
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "train-core", [">= 1.7.5", "< 4.0"]
6
-
7
- gemspec
8
-
9
- group :development do
10
- gem "byebug", "~> 11.0"
11
- gem "m", "~> 1.5"
12
- gem "minitest", "~> 5.11"
13
- gem "mocha", "~> 1.8"
14
- gem "pry", "~> 0.11"
15
- gem "rake", "~> 12.3"
16
- gem "rubocop", "~> 0.59"
17
- gem "chefstyle", "0.13.2"
18
- end
@@ -1,26 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- lib = File.expand_path("lib", __dir__)
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require "train-habitat/version"
6
-
7
- Gem::Specification.new do |spec|
8
- spec.name = "train-habitat"
9
- spec.version = TrainPlugins::Habitat::VERSION
10
- spec.authors = ["Chef InSpec Team"]
11
- spec.email = ["inspec@chef.io"]
12
- spec.summary = "Habitat API Transport for Train"
13
- spec.description = "Allows applications using Train to speak to Habitat."
14
- spec.homepage = "https://github.com/inspec/train-habitat"
15
- spec.license = "Apache-2.0"
16
-
17
- spec.files = %w{
18
- train-habitat.gemspec Gemfile
19
- } + Dir.glob(
20
- "lib/**/*", File::FNM_DOTMATCH
21
- ).reject { |f| File.directory?(f) }
22
- spec.require_paths = ["lib"]
23
-
24
- spec.add_development_dependency "minitest", "~> 5.0"
25
- spec.add_development_dependency "rake", "~> 10.0"
26
- end