kitchen-linode 0.10.0 → 0.11.0
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/.codeclimate.yml +21 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +1156 -0
- data/.travis.yml +7 -7
- data/Gemfile +0 -3
- data/README.md +22 -29
- data/kitchen-linode.gemspec +2 -0
- data/lib/kitchen/driver/linode.rb +60 -43
- data/lib/kitchen/driver/linode_version.rb +1 -1
- data/spec/kitchen/driver/linode_spec.rb +170 -0
- data/spec/spec_helper.rb +14 -0
- metadata +37 -3
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
require "codeclimate-test-reporter"
|
|
2
|
+
CodeClimate::TestReporter.start
|
|
3
|
+
|
|
4
|
+
RSpec.configure do |config|
|
|
5
|
+
|
|
6
|
+
config.expect_with :rspec do |expectations|
|
|
7
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
config.mock_with :rspec do |mocks|
|
|
11
|
+
mocks.verify_partial_doubles = true
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-linode
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brett Taylor
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-05-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|
|
@@ -66,6 +66,34 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '10.4'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rspec
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '3.4'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '3.4'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: codeclimate-test-reporter
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0.5'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0.5'
|
|
69
97
|
description: A Test Kitchen Driver for Linode
|
|
70
98
|
email:
|
|
71
99
|
- btaylor@linode.com
|
|
@@ -74,7 +102,9 @@ extensions: []
|
|
|
74
102
|
extra_rdoc_files: []
|
|
75
103
|
files:
|
|
76
104
|
- ".cane"
|
|
105
|
+
- ".codeclimate.yml"
|
|
77
106
|
- ".gitignore"
|
|
107
|
+
- ".rubocop.yml"
|
|
78
108
|
- ".tailor"
|
|
79
109
|
- ".travis.yml"
|
|
80
110
|
- CHANGELOG.md
|
|
@@ -84,6 +114,8 @@ files:
|
|
|
84
114
|
- kitchen-linode.gemspec
|
|
85
115
|
- lib/kitchen/driver/linode.rb
|
|
86
116
|
- lib/kitchen/driver/linode_version.rb
|
|
117
|
+
- spec/kitchen/driver/linode_spec.rb
|
|
118
|
+
- spec/spec_helper.rb
|
|
87
119
|
homepage: https://github.com/ssplatt/kitchen-linode
|
|
88
120
|
licenses:
|
|
89
121
|
- Apache-2.0
|
|
@@ -108,4 +140,6 @@ rubygems_version: 2.5.1
|
|
|
108
140
|
signing_key:
|
|
109
141
|
specification_version: 4
|
|
110
142
|
summary: A Test Kitchen Driver to use Linodes as your development environment
|
|
111
|
-
test_files:
|
|
143
|
+
test_files:
|
|
144
|
+
- spec/kitchen/driver/linode_spec.rb
|
|
145
|
+
- spec/spec_helper.rb
|