-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathautorake.gemspec
59 lines (52 loc) · 2.2 KB
/
autorake.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
#
# autorake.gemspec -- Autorake Gem specification
#
require "./lib/autorake/version"
Gem::Specification.new do |s|
s.name = Autorake::NAME
s.version = Autorake::VERSION
s.summary = Autorake::SUMMARY
s.description = Autorake::DESCRIPTION
s.license = Autorake::LICENSE
s.authors = Autorake::TEAM
s.email = Autorake::AUTHOR
s.homepage = Autorake::HOMEPAGE
s.requirements = "Rake"
s.add_dependency "rake", ">=11"
s.files = %w(
lib/autorake.rb
lib/autorake/application.rb
lib/autorake/configure.rb
lib/autorake/compile.rb
lib/autorake/definition.rb
lib/autorake/directories.rb
lib/autorake/mkconfig.rb
lib/autorake/version.rb
examples/dlcpp/Rakefile
examples/dlcpp/mkrf_conf
examples/dlcpp/dl.cpp
examples/dlcpp/dl.h
examples/dlcpp/hello.cpp
examples/dlcpp/hello.h
examples/dlcpp/main.cpp
examples/justinst/Rakefile
examples/justinst/mkrf_conf
examples/justinst/plugin/dial.vim
examples/justinst/plugin/ruby.vim
examples/justinst/plugin/yesno.vim
examples/plainc/Rakefile
examples/plainc/mkrf_conf
examples/plainc/hello.c
examples/rbextend/Rakefile
examples/rbextend/mkrf_conf
examples/rbextend/hello.c
examples/rbextend/hello.h
examples/rbextend/rbhello
)
s.executables = %w()
s.rdoc_options.concat %w(--charset utf-8 --main README)
s.extra_rdoc_files = %w(
README
LICENSE
)
end