1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
$:.unshift File.expand_path("../../mustermann/lib", __FILE__)
require "mustermann/version"
Gem::Specification.new do |s|
s.name = "mustermann"
s.version = Mustermann::VERSION
s.authors = ["Konstantin Haase", "Zachary Scott"]
s.email = "sinatrarb@googlegroups.com"
s.homepage = "https://github.com/sinatra/mustermann"
s.summary = %q{Your personal string matching expert.}
s.description = %q{A library implementing patterns that behave like regular expressions.}
s.license = 'MIT'
s.required_ruby_version = '>= 2.2.0'
s.files = Dir['**/*']
s.test_files = Dir['spec/**/*']
s.executables = []
s.add_runtime_dependency('ruby2_keywords', '~> 0.0.1')
end
|