Sha256: ba598257e46db5a0d231fe0c14ca8dd37640301bc086c330a38f2490924eb64b

Contents?: true

Size: 997 Bytes

Versions: 1

Compression:

Stored size: 997 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_dependency("redis")

  spec.add_development_dependency "bundler"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fast_serializer-1.1.3 fast_serializer.gemspec