Sha256: a5bd230520450b4a05167dc9b2d2ae26d625402ad03d8d16fe3a778f43f6f4a5
Contents?: true
Size: 993 Bytes
Versions: 3
Compression:
Stored size: 993 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'round_robin_tournament/version' Gem::Specification.new do |spec| spec.name = 'round_robin_tournament' spec.version = RoundRobinTournament::VERSION spec.authors = ['Sebastien Saunier'] spec.email = ['seb@saunier.me'] spec.summary = 'Round Robin Tournament schedule for competitions or classroom teams' spec.description = spec.summary spec.homepage = 'https://github.com/ssaunier/round_robin_tournament' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.7' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
round_robin_tournament-0.1.1 | round_robin_tournament.gemspec |
round_robin_tournament-0.1.0 | round_robin_tournament.gemspec |
round_robin_tournament-0.0.1 | round_robin_tournament.gemspec |