Skip to content

Commit d8aaf97

Browse files
committed
βœ… Update specs
- kettle-test harness
1 parent 88be176 commit d8aaf97

5 files changed

Lines changed: 17 additions & 6 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,21 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
66

77
## [Unreleased]
88
### Added
9+
10+
- Incident Response Plan in IRP.md
11+
- SnakyHash::VERSION (Traditional Constant Location)
12+
- kettle-dev & kettle-test dev harnesses
13+
914
### Changed
15+
16+
- Contributor Conenant updated to version 2.1
17+
1018
### Deprecated
1119
### Removed
1220
### Fixed
21+
22+
- Specs
23+
1324
### Security
1425

1526
## [2.0.3] - 2025-05-23

β€ŽGemfile.lockβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
snaky_hash (2.0.3)
4+
snaky_hash (2.0.4)
55
hashie (>= 0.1.0, < 6)
66
version_gem (>= 1.1.8, < 3)
77

@@ -421,7 +421,7 @@ CHECKSUMS
421421
simplecov-lcov (0.9.0) sha256=7a77a31e200a595ed4b0249493056efd0c920601f53d2ef135ca34ee796346cd
422422
simplecov-rcov (0.3.7) sha256=372f50bf6df6b6350b7d0c840f2f8bdabe021861a43c26877b747c9ac96139fc
423423
simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
424-
snaky_hash (2.0.3)
424+
snaky_hash (2.0.4)
425425
standard (1.54.0) sha256=7a4b08f83d9893083c8f03bc486f0feeb6a84d48233b40829c03ef4767ea0100
426426
standard-custom (1.0.2) sha256=424adc84179a074f1a2a309bb9cf7cd6bfdb2b6541f20c6bf9436c0ba22a652b
427427
standard-performance (1.9.0) sha256=49483d31be448292951d80e5e67cdcb576c2502103c7b40aec6f1b6e9c88e3f2

β€Žlib/snaky_hash/version.rbβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module Version
88
# Current version of SnakyHash
99
#
1010
# @return [String] the current version in semantic versioning format
11-
VERSION = "2.0.3"
11+
VERSION = "2.0.4"
1212
end
13+
VERSION = Version::VERSION # Traditional Constant Location
1314
end

β€Žspec/snaky_hash/snake_spec.rbβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
let(:the_snaked_hash) do
99
Class.new(Hashie::Mash) do
10-
include described_class.new(key_type: :string)
10+
include SnakyHash::Snake.new(key_type: :string)
1111
end
1212
end
1313

β€Žspec/spec_helper.rbβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
ENV["RACK_ENV"] = "test"
55

66
# Third Party Libraries
7-
require "rspec/block_is_expected"
8-
require "rspec/pending_for"
7+
require "kettle/test/rspec"
98
require "version_gem/ruby"
109
require "version_gem/rspec"
1110

0 commit comments

Comments
Β (0)