spintax_parser.gemspec
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/spintax_parser/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Scott McCormack"]
gem.email = ["mail@madhackerdesigns.com"]
gem.description = %q{A mixin to parse "spintax", a text format used for automated article generation. Can handle nested spintax, and can count the total number of unique variations. Now also supports consistent unspinning!}
gem.summary = gem.description
gem.homepage = "https://github.com/flintinatux/spintax_parser"
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.name = "spintax_parser"
gem.require_paths = ["lib"]
gem.version = SpintaxParser::VERSION
gem.add_dependency 'backports', '~> 3.3'
gem.add_development_dependency 'rspec', '~> 2.12'
end