Sha256: 0b4450f41cb2082dbc9423fb4968335918753092267a8a4fa675ea17be6d14a4

Contents?: true

Size: 965 Bytes

Versions: 1

Compression:

Stored size: 965 Bytes

Contents

Gem::Specification.new do |spec|
  spec.name = "fast_serializer"
  spec.version = File.read(File.expand_path("VERSION", __dir__)).strip
  spec.authors = ["Brian Durand"]
  spec.email = ["bbdurand@gmail.com"]

  spec.summary = "Super fast object serialization for API's combining a simple DSL with many optimizations under the hood."
  spec.homepage = "https://github.com/bdurand/fast_serializer"
  spec.license = "MIT"

  # 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.
  ignore_files = %w[
    .
    Appraisals
    Gemfile
    Gemfile.lock
    Rakefile
    bin/
    gemfiles/
    spec/
  ]
  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } }
  end

  spec.require_paths = ["lib"]

  spec.required_ruby_version = ">= 2.5"

  spec.add_development_dependency "bundler"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fast_serializer-1.1.4 fast_serializer.gemspec