Sha256: 5b652d9f27f31fb367b1a87b3d3aa11396b0d6ffb642fcaafd3579e312fb3e16

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

require_relative 'lib/tidy_json/version'

Gem::Specification.new do |spec|
  spec.name        = 'tidy_json'
  spec.version     = TidyJson::VERSION
  spec.summary     = 'Serialize any Ruby object as readable JSON'
  spec.description = 'A mixin providing (recursive) JSON serialization and pretty printing.'
  spec.authors     = [' ']
  spec.homepage    = 'https://github.com/rdipardo/tidy_json'
  spec.license     = 'MIT'
  spec.metadata    = {
    'documentation_uri' => 'https://rubydoc.info/github/rdipardo/tidy_json'
  }
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    ['.yardopts'].concat(`git ls-files -z`.split("\x0").reject { |f| f.match(/^(\.[\w+.]+|test|spec|features|codecov)/) })
  end
  spec.test_files = Dir['test/*']
  spec.require_paths = ['lib']
  spec.executables = ['jtidy']
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3')
  spec.add_runtime_dependency 'json', '~> 2.7'
  spec.rdoc_options = ['-x test/*']
  spec.post_install_message = '
#
# * * * * * * * * * * * * * * * * * * * * * * * * * *
#                     さよなら!
# * * * * * * * * * * * * * * * * * * * * * * * * * *
#         tidy_json is no longer maintained.
#   Please consider using one of these gems instead:
#       alba  <https://rubygems.org/gems/alba>
#      shale  <https://rubygems.org/gems/shale>
#     mutils  <https://rubygems.org/gems/mutils>
# * * * * * * * * * * * * * * * * * * * * * * * * * *
#
'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tidy_json-0.5.3 tidy_json.gemspec