-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathspintax_parser.gemspec
20 lines (17 loc) · 960 Bytes
/
spintax_parser.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- 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