Sha256: 3c3ae14a8039f2c348a467656b48cc25e6b94c7f3b1689ca273734f898744893
Contents?: true
Size: 1.7 KB
Versions: 1
Compression:
Stored size: 1.7 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vote/schulze/version' Gem::Specification.new do |spec| spec.name = 'vote-schulze' spec.version = Vote::Schulze::VERSION spec.authors = ['Christoph Grabo'] spec.email = ['asaaki@mannaz.cc'] spec.summary = 'Schulze method implementation (a type of the Condorcet method)' spec.description = 'This gem is a Ruby implementation of the Schulze voting method (using Floyd–Warshall ' \ 'algorithm), a type of the Condorcet voting methods.' spec.homepage = 'https://github.com/asaaki/vote-schulze' 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. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 3.0' spec.add_runtime_dependency 'matrix', '>= 0.4.2' spec.add_development_dependency 'bundler', '~> 2.4' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.12' spec.add_development_dependency 'rubocop', '~> 1.50' spec.add_development_dependency 'rubocop-performance', '~> 1.10' spec.add_development_dependency 'rubocop-rake', '~> 0.6' spec.add_development_dependency 'rubocop-rspec', '~> 2.22' spec.metadata['rubygems_mfa_required'] = 'true' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vote-schulze-0.4.0 | vote-schulze.gemspec |