File: mustermann.gemspec

package info (click to toggle)
ruby-mustermann 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,136 kB
  • sloc: ruby: 8,007; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 825 bytes parent folder | download
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