Sha256: 25893f8984a690fb5464a3d7de472030cf1bfa10d87ac04b4347a7565551c2b2

Contents?: true

Size: 981 Bytes

Versions: 3

Compression:

Stored size: 981 Bytes

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.summary = "A fast Base64 encoder and decoder."
  spec.description = "A fast Base64 encoder and decoder that makes use of SIMD extensions."

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

  spec.metadata["homepage_uri"] = spec.homepage

  # 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"]
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ob64-0.3.0 ob64.gemspec
ob64-0.2.0 ob64.gemspec
ob64-0.1.0 ob64.gemspec