Sha256: 5b2b81713fd65aea867e70a7285c3fadb5e932a062c6cb4465b1112cc7276cae
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'fantasyCompare/version' Gem::Specification.new do |spec| spec.name = "fantasyCompare" spec.version = FantasyCompare::VERSION spec.authors = ["John Verdone"] spec.email = ["jmverdone@gmail.com"] spec.summary = %q{Compares fantasy players stats in a CLI} spec.description = %q{A console Gem that pulls API data from the NFLs fantasy api. It then lets a user select a positon and week. After displaying the top ten players, a player can be selected to see a more detailed view of the given player} spec.homepage = "https://github.com/jminterwebs/fantasyCompare" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |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.add_development_dependency "bundler", "~> 1.13" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fantasyCompare-0.1.4 | fantasyCompare.gemspec |
fantasyCompare-0.1.3 | fantasyCompare.gemspec |
fantasyCompare-0.1.2 | fantasyCompare.gemspec |
fantasyCompare-0.1.0 | fantasyCompare.gemspec |