Sha256: a4e9179c8c0af0f5d1ab8b6ba80f0191f43e21ca3645c3536f6e192ba1111ce9
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'linotype/version' Gem::Specification.new do |gem| gem.name = "linotype" gem.version = Linotype::VERSION gem.authors = ["Sean Devine"] gem.email = ["barelyknown@icloud.com"] gem.description = <<-eos linotype is a small program that implements that game mechanic of Letterpress for iOS by atebits software http://www.atebits.com/letterpress/ The program was written to support the automation of letterpress gameplay and to power command line or web-based versions of the game. It was inspired by a tweet by Andy Baio about cheating in letterpress. https://twitter.com/waxpancake/statuses/261966416507465728 The game uses the words file comes with Mac OS X, but any word file can be used. eos gem.summary = %q{Small ruby program that implements the game mechanic of the letterpress iOS game.} gem.homepage = "https://github.com/barelyknown/linotype" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
linotype-0.0.1 | linotype.gemspec |