Sha256: 72fc7f4202f4d3f5259bcade22771aab8e7424e103f3611e189823fe4a0141c6
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 KB
Contents
# frozen_string_literal: true require_relative 'lib/easy_talk/version' Gem::Specification.new do |spec| spec.name = 'easy_talk' spec.version = EasyTalk::VERSION spec.authors = ['Sergio Bayona'] spec.email = ['bayona.sergio@gmail.com'] spec.summary = 'Generate json-schema from Ruby classes.' spec.description = 'Generate json-schema from plain Ruby classes.' spec.homepage = 'https://github.com/sergiobayona/easy_talk' spec.license = 'MIT' spec.required_ruby_version = '>= 3.2' spec.metadata['allowed_push_host'] = 'https://rubygems.org' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/sergiobayona/easy_talk' spec.metadata['changelog_uri'] = 'https://github.com/sergiobayona/easy_talk/blob/main/CHANGELOG.md' # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ spec/ .git .github Gemfile]) end end spec.require_paths = ['lib'] spec.add_dependency 'activesupport', '~> 6.0' spec.add_dependency 'json-schema', '~> 4' spec.add_dependency 'sorbet-runtime' spec.add_development_dependency 'pry-byebug', '>= 3.10.1' spec.add_development_dependency 'rake', '~> 13.1' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
easy_talk-0.1.3 | easy_talk.gemspec |