-
Notifications
You must be signed in to change notification settings - Fork 10
/
plissken.gemspec
21 lines (19 loc) · 1.01 KB
/
plissken.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "plissken/version"
Gem::Specification.new do |spec|
spec.authors = ["Dave Hrycyszyn", "Stuart Chinery"]
spec.description = "Have you ever needed to automatically convert JSON-style camelBack or CamelCase hash keys into " \
"more Rubyish snake_case?\n\nPlissken to the rescue.\n\nThis gem recursively converts all " \
"camelBack or CamelCase keys in a hash structure to snake_case."
spec.email = ["[email protected]", "[email protected]"]
spec.files = Dir["lib/**/*", "MIT-LICENSE", "Rakefile", "README.md", "VERSION"]
spec.homepage = "https://github.com/technicalpanda/plissken"
spec.metadata["rubygems_mfa_required"] = "true"
spec.name = "plissken"
spec.required_ruby_version = ">= 3.0"
spec.summary = "Snakify your camel keys when working with JSON APIs"
spec.version = Plissken::VERSION
spec.license = "MIT"
end