Sha256: 6048bfe9e0bbbf2ab2ef3d08fba1ddb2165a29663a8d2727aef5d13163fd7fa4

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

require "date"
require_relative "lib/ob64/version"

Gem::Specification.new do |spec|
  spec.name = "ob64"
  spec.version = Ob64::VERSION
  spec.authors = ["João Fernandes"]
  spec.email = ["joao.fernandes@ist.utl.pt"]
  spec.homepage = "https://github.com/jcmfernandes/ob64"
  spec.license = "MIT"
  spec.summary = "A fast Base64 encoder and decoder."
  spec.description = "A fast Base64 encoder and decoder that makes use of SIMD extensions."

  # 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
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end
  spec.require_paths = ["lib"]
  spec.extensions = ["ext/ob64/extconf.rb"]

  spec.metadata = {
    "homepage_uri" => spec.homepage,
    "changelog_uri" => spec.homepage + "/blob/master/CHANGELOG.md",
    "documentation_uri" => "https://www.rubydoc.info/gems/ob64/#{spec.version}",
    "source_code_uri" => spec.homepage + "/tree/v#{spec.version}"
  }

  spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ob64-0.4.0 ob64.gemspec