-
Notifications
You must be signed in to change notification settings - Fork 5
/
joker.gemspec
45 lines (41 loc) · 1.3 KB
/
joker.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Gem::Specification.new do |s|
s.name = %q{joker}
s.version = "1.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Fabian Streitel"]
s.date = %q{2011-08-25}
s.description = %q{Joker is a simple wildcard implementation that works much like Regexps}
s.summary = %q{Joker is a simple wildcard implementation}
s.email = %q{karottenreibe@gmail.com}
s.license = %q{MIT}
s.homepage = %q{http://karottenreibe.github.com/joker}
s.require_paths = ["lib"]
s.extensions = ["ext/joker_native/extconf.rb"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.markdown"
]
s.files = [
"HISTORY.markdown",
"LICENSE.txt",
"README.markdown",
"Rakefile",
"VERSION",
"ext/joker_native/Joker.c",
"ext/joker_native/Joker.h",
"ext/joker_native/Wildcard.c",
"ext/joker_native/Wildcard.h",
"ext/joker_native/compile.c",
"ext/joker_native/compile.h",
"ext/joker_native/extconf.rb",
"ext/joker_native/match.c",
"ext/joker_native/match.h",
"lib/joker.rb",
"test/c/test_compile.c",
"test/c/test_match.c",
"test/ruby/test_joker.rb"
]
s.add_runtime_dependency("rake-compiler", "~> 0")
s.add_runtime_dependency("rake", "~> 10")
s.add_runtime_dependency("bacon", "~> 1")
end