Sha256: 16e9fb6f4a9c45af499c6ebfada400d7503eada2f0ed5bbbae592106c879a8a6
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 KB
Contents
# frozen_string_literal: true require_relative "lib/ruby_clang_fpe/version" Gem::Specification.new do |spec| spec.name = "ruby_clang_fpe" spec.version = RubyClangFpe::VERSION spec.authors = ["Daniel Luna"] spec.email = ["dancluna@gmail.com"] spec.summary = "Ruby bindings for the Clang FPE library." spec.description = "Format-preserving encryption for Ruby, based on https://github.com/mysto/clang-fpe." spec.homepage = "https://github.com/dcluna/ruby_clang_fpe" spec.license = "MIT" spec.required_ruby_version = ">= 2.6.0" spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/dcluna/ruby_clang_fpe" spec.metadata["changelog_uri"] = "https://github.com/dcluna/ruby_clang_fpe" # 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(__dir__) do `git ls-files -z --recurse-submodules`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)}) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.extensions = ["ext/ruby_clang_fpe/extconf.rb"] # Uncomment to register a new dependency of your gem # spec.add_dependency "example-gem", "~> 1.0" # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html spec.add_development_dependency "pry" spec.add_development_dependency "pry-doc" spec.add_development_dependency "pry-rescue" spec.add_development_dependency "pry-stack_explorer" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_clang_fpe-0.1.0 | ruby_clang_fpe.gemspec |