Sha256: 1c7177af2362cf338bf87b7093fd790e35a2eeb90626069e3ebbc4c3e13c1904
Contents?: true
Size: 1.21 KB
Versions: 6
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true require_relative "lib/paquito/version" Gem::Specification.new do |spec| spec.name = "paquito" spec.version = Paquito::VERSION spec.authors = ["Jean Boussier"] spec.email = ["jean.boussier@gmail.com"] spec.summary = "Framework for defining efficient and extendable serializers" spec.description = "Framework for defining efficient and extendable serializers" spec.homepage = "https://github.com/Shopify/paquito" spec.license = "MIT" spec.required_ruby_version = ">= 2.7.0" spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/Shopify/paquito" # 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(File.expand_path(__dir__)) do %x{git ls-files -z}.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency("msgpack") end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
paquito-0.4.0 | paquito.gemspec |
paquito-0.3.1 | paquito.gemspec |
paquito-0.3.0 | paquito.gemspec |
paquito-0.2.1 | paquito.gemspec |
paquito-0.2.0 | paquito.gemspec |
paquito-0.1.0 | paquito.gemspec |