Sha256: 37849a81ff99c1d839ab88368a2fe3771e7d54b63acc87012cac469b78158cc8
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'words_matrix' Gem::Specification.new do |spec| spec.name = "words_matrix" spec.version = WordsMatrix::VERSION spec.authors = ["Alona Mekhovova"] spec.email = ["alona.tarasova@gmail.com"] spec.summary = "Words search in a random letter matrix" spec.description = %q{ A command line app able to generate a random word search grid n x n (n: number of rows/number of columns) and find all the words inside it. - The grid letters must be uppercase. - The valid words are defined inside the file dict.txt - The minimum size of a valid word is 3 characters. - The program must detect all possible directions: horizontal, vertical and diagonal. (The words can be on reverse order) } spec.homepage = "https://github.com/alony/words_matrix" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = ["words_matrix"] spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib", "data"] spec.add_runtime_dependency "thor" spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "rspec-its" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
words_matrix-0.0.1 | words_matrix.gemspec |