-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbri.gemspec
60 lines (54 loc) · 2.17 KB
/
bri.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Gem::Specification.new do |s|
s.name = "bri"
s.version = "0.4.4"
s.required_ruby_version = ">= 2.6.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sven Riedel"]
s.date = %q{2011-05-20}
s.description = %q{An alternative to the ri command}
s.add_dependency( 'term-ansicolor', '>= 1.7.1' )
s.add_dependency( 'rdoc', '~> 6.1.1' )
s.add_development_dependency( 'rspec', '~> 3.8.0' )
s.add_development_dependency( 'rspec-its' )
s.add_development_dependency( 'byebug' )
s.summary = %q{Beautified RI in the spirit of fastri/qri. Unlike fastri, bri builds on top of the rdoc 2.x/3.x backend, only output and formatting is handled by bri}
s.email = %q{[email protected]}
s.homepage = %q{http://github.com/sriedel/bri}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{3.0.3}
s.bindir = 'bin'
s.executables = [ 'bri' ]
s.extra_rdoc_files = %W{ README.rdoc }
s.files = %W{ README.rdoc
TODO
Changelog
bin/bri
lib/bri.rb
lib/bri/mall.rb
lib/bri/matcher.rb
lib/bri/match.rb
lib/bri/match/base.rb
lib/bri/match/class.rb
lib/bri/match/method.rb
lib/bri/search.rb
lib/bri/search/base.rb
lib/bri/search/class.rb
lib/bri/search/method.rb
lib/bri/search/class_method.rb
lib/bri/search/instance_method.rb
lib/bri/templates.rb
lib/bri/renderer.rb
spec/spec_helper.rb
spec/bri_dummy_spec_class.rb
spec/lib/bri/mall_spec.rb
spec/lib/bri/matcher_spec.rb
spec/lib/bri/renderer_spec.rb
spec/lib/bri/match/class_spec.rb
spec/lib/bri/match/method_spec.rb
spec/lib/bri/search/class_spec.rb
spec/lib/bri/search/class_method_spec.rb
spec/lib/bri/search/instance_method_spec.rb
spec/lib/bri/search/method_spec.rb
}
end