-
Notifications
You must be signed in to change notification settings - Fork 3
/
mactag.gemspec
61 lines (58 loc) · 1.67 KB
/
mactag.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 = 'mactag'
s.version = '0.7.2'
s.authors = ['Johan Andersson']
s.date = '2011-02-06'
s.description = 'Mactag is a DSL to create Ctags files for Ruby/Rails'
s.email = '[email protected]'
s.extra_rdoc_files = [
'README.markdown'
]
s.executables = ['mactag']
s.files = [
'README.markdown',
'Rakefile',
'VERSION',
'lib/mactag.rb',
'lib/mactag/builder.rb',
'lib/mactag/bundler.rb',
'lib/mactag/config.rb',
'lib/mactag/ctags.rb',
'lib/mactag/dsl.rb',
'lib/mactag/errors.rb',
'lib/mactag/indexer.rb',
'lib/mactag/indexer/app.rb',
'lib/mactag/indexer/gem.rb',
'lib/mactag/indexer/plugin.rb',
'lib/mactag/indexer/rails.rb',
'lib/mactag/indexer/lib.rb'
]
s.homepage = 'http://github.com/rejeep/mactag'
s.require_paths = ['lib']
s.rubygems_version = '1.5.0'
s.summary = 'Ctags for Ruby/Rails'
s.test_files = [
'spec/mactag/builder_spec.rb',
'spec/mactag/bundler_spec.rb',
'spec/mactag/config_spec.rb',
'spec/mactag/ctags_spec.rb',
'spec/mactag/dsl_spec.rb',
'spec/mactag/indexer/app_spec.rb',
'spec/mactag/indexer/gem_spec.rb',
'spec/mactag/indexer/lib_spec.rb',
'spec/mactag/indexer/plugin_spec.rb',
'spec/mactag/indexer/rails_spec.rb',
'spec/mactag_spec.rb',
'spec/matcher/app.rb',
'spec/matcher/gem.rb',
'spec/matcher/lib.rb',
'spec/matcher/plugin.rb',
'spec/matcher/rails.rb',
'spec/matcher.rb',
'spec/spec_helper.rb'
]
s.add_development_dependency('rspec', ['~> 2.7'])
s.add_development_dependency('yard')
s.add_development_dependency('redcarpet')
s.add_development_dependency('rake')
end