coolkit 0.2.1 → 0.2.2
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/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/coolkit.gemspec +1 -2
- data/lib/coolkit.rb +3 -1
- metadata +1 -2
- data/lib/coolkit/version.rb +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5292e998b95352ddfed95f15c7db689c8a4515dde924dd1b90258a1991e546c
|
|
4
|
+
data.tar.gz: 820cc86ffcd8f63d690bf1bc7897327cfac1185e6aea8bb6069dca1f6122c452
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca299ab33e7d1dff6d0635d9ce2bcbbcd74df2fbc4babfedfc40d743f6f43fbbc0ad0a2f79bc48d1749e3b556353ef1a6f4c03f55cd6b0d86fd030f951ab1034
|
|
7
|
+
data.tar.gz: c4f4e7610411307e517902e6878278386f0b0b43ae0ac9d08d9787c19a072ee70d5a3db23b694efd142a6f716f72276889ccfe0ffb1ec69ada8e443dd72632a2
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## [Unreleased] -->
|
|
9
9
|
|
|
10
|
+
## 0.2.2 (2019-11-19)
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Don't load code in `coolkit.gemspec`.
|
|
15
|
+
- (When running `bundle exec rake test`, `Coolkit::VERSION` was required before `simplecov`, so version tests were ignored.
|
|
16
|
+
- Added test to make sure `Coolkit::VERSION` and the version string in `coolkit.gemspec` match.
|
|
17
|
+
|
|
18
|
+
|
|
10
19
|
## 0.2.1 (2019-11-19)
|
|
11
20
|
|
|
12
21
|
### Fixed
|
data/Gemfile.lock
CHANGED
data/coolkit.gemspec
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
lib = File.expand_path("lib", __dir__)
|
|
2
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
-
require "coolkit/version"
|
|
4
3
|
|
|
5
4
|
Gem::Specification.new do |spec|
|
|
6
5
|
spec.name = "coolkit"
|
|
7
|
-
spec.version =
|
|
6
|
+
spec.version = "0.2.2"
|
|
8
7
|
spec.authors = ["Clay Dunston"]
|
|
9
8
|
spec.email = ["dunstontc@gmail.com"]
|
|
10
9
|
|
data/lib/coolkit.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Clay Dunston
|
|
@@ -140,7 +140,6 @@ files:
|
|
|
140
140
|
- lib/coolkit/string/titleize.rb
|
|
141
141
|
- lib/coolkit/symbolize.rb
|
|
142
142
|
- lib/coolkit/time.rb
|
|
143
|
-
- lib/coolkit/version.rb
|
|
144
143
|
homepage: https://github.com/tcd/coolkit
|
|
145
144
|
licenses:
|
|
146
145
|
- MIT
|
data/lib/coolkit/version.rb
DELETED