-
Notifications
You must be signed in to change notification settings - Fork 0
/
rrrex.gemspec
33 lines (29 loc) · 1.62 KB
/
rrrex.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{rrrex}
s.version = "0.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ian Young"]
s.date = %q{2011-05-27}
s.description = %q{ Rrrex is a new syntax for regular expressions.
Less compact, but human-readable. By regular humans.
}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["README.md"]
s.files = ["lib/method_missing_conversion.rb", "lib/rrrex/composite_match.rb", "lib/rrrex/concat_match.rb", "lib/rrrex/core_ext/fixnum.rb", "lib/rrrex/core_ext/range.rb", "lib/rrrex/core_ext/string.rb", "lib/rrrex/core_ext.rb", "lib/rrrex/dsl_context.rb", "lib/rrrex/group_match.rb", "lib/rrrex/match.rb", "lib/rrrex/match_data.rb", "lib/rrrex/not_match.rb", "lib/rrrex/number_match.rb", "lib/rrrex/or_match.rb", "lib/rrrex/range_match.rb", "lib/rrrex/regexp.rb", "lib/rrrex/single_atom_match.rb", "lib/rrrex/string_match.rb", "lib/rrrex/unescaped_string_match.rb", "lib/rrrex.rb", "test/match_test.rb", "LICENSE", "Rakefile", "README.md", "TODO"]
s.homepage = %q{https://github.com/iangreenleaf/rrrex}
s.rdoc_options = ["--main", "README.md"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{Really Readable Regexps}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<mocha>, [">= 0"])
else
s.add_dependency(%q<mocha>, [">= 0"])
end
else
s.add_dependency(%q<mocha>, [">= 0"])
end
end