Sha256: 0f36b22bf66fa8dec696050f8cfe766c6652c5dea55d2ddf29643d83ca052780
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'branca/version' Gem::Specification.new do |spec| spec.name = 'branca-ruby' spec.version = Branca::VERSION spec.authors = ['Thadeu Esteves'] spec.email = ['tadeuu@gmail.com'] spec.summary = 'Authenticated and encrypted API tokens using modern crypto' spec.description = 'Authenticated and encrypted API tokens using modern crypto' spec.homepage = 'https://github.com/thadeu/branca-ruby' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.required_ruby_version = '>= 2.3.0' spec.require_paths = ['lib'] spec.add_dependency 'base_x', '~> 0.8.1' spec.add_dependency 'rbnacl', '~> 7.0' spec.add_development_dependency 'bundler', '>= 1.14' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop', '~> 0.70' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
branca-ruby-1.0.3 | branca-ruby.gemspec |
branca-ruby-1.0.2 | branca-ruby.gemspec |