Sha256: d61c1d25eb17b302e22c407fc320720b33dec43755c6e680c08c022a8c89abea

Contents?: true

Size: 953 Bytes

Versions: 1

Compression:

Stored size: 953 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'twenty_one/version'

Gem::Specification.new do |spec|
  spec.name          = "twenty_one"
  spec.version       = TwentyOne::VERSION
  spec.authors       = ["pori"]
  spec.email         = ["porialex@gmail.com"]
  spec.summary       = %q{A simple command-line implementation of 21, better known as blackjack.}
  spec.description   = %q{Run 21 to execute the application.}
  spec.homepage      = "https://github.com/pori/twenty_one"
  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.6"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
twenty_one-0.1.1 twenty_one.gemspec