-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add categories (MCC) + Bump min Ruby version + Pre-compile on boot (#26)
* Categories! * Bump min Ruby version It's nice being able to omit hash values. This is a breaking change, but since only HCB uses it and we're on 3.3, it's alright. Plus we haven't been formally releasing this gem so there's no expectation for semver. * Pre-compile hash from YAML file on boot * categories!! ^w^ * bump version? * lol * fix typo * add spec for categories :3 * stripe wants to give us strings? we eat strings for breakfast. * Temporarily fix CI. Gemfile.lock shouldn't be checked in. --------- Co-authored-by: 24c02 <[email protected]>
- Loading branch information
Showing
10 changed files
with
1,082 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
yellow_pages (0.3.0) | ||
yellow_pages (0.4.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"key": { | ||
"type": "string" | ||
} | ||
} | ||
} |
Oops, something went wrong.