-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxing-root.gemspec
More file actions
70 lines (64 loc) · 2.3 KB
/
xing-root.gemspec
File metadata and controls
70 lines (64 loc) · 2.3 KB
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
61
62
63
64
65
66
67
68
69
70
Gem::Specification.new do |spec|
spec.name = "xing-root"
#{MAJOR: incompatible}.{MINOR added feature}.{PATCH bugfix}-{LABEL}
spec.version = "1.0.0-beta.2"
author_list = {
"Judson Lester" => "judson@lrdesign.com",
"Patricia Ho" => "patricia@lrdesign.com"
}
spec.authors = author_list.keys
spec.email = spec.authors.map {|name| author_list[name]}
spec.summary = "The Root of all Xing"
spec.description = <<-EndDescription
The root of all that is Xing in the world.
EndDescription
spec.rubyforge_project= spec.name.downcase
spec.homepage = ""
spec.required_rubygems_version = Gem::Requirement.new(">= 0") if spec.respond_to? :required_rubygems_version=
# Do this: y$@"
# !!find lib bin doc spec spec_help -not -regex '.*\.sw.' -type f 2>/dev/null
spec.files = %w[
lib/xing/edicts.rb
lib/xing/tasks.rb
lib/xing/tasks/backend.rb
lib/xing/tasks/build.rb
lib/xing/tasks/frontend.rb
lib/xing/tasks/tasklib.rb
lib/xing/tasks/spec.rb
lib/xing/tasks/develop.rb
lib/xing/tasks/initialize.rb
lib/xing/managers/child.rb
lib/xing/managers/tmux.rb
lib/xing/edicts/start-child.rb
lib/xing/edicts/clean-rake.rb
lib/xing/edicts/clean-run.rb
lib/xing/edicts/structure-checker.rb
lib/xing/edicts/launch-browser.rb
lib/xing/utils/import_checker.rb
lib/xing-root.rb
spec/tasks/frontend_spec.rb
spec/tasks/develop_spec.rb
spec/tasks/initialize_spec.rb
spec/managers/tmux_spec.rb
spec/support/file-sandbox.rb
spec/edicts/start-child_spec.rb
spec/edicts/clean_run_spec.rb
spec/edicts/clean_rake_spec.rb
spec/edicts/launch-browser_spec.rb
spec/edicts/structure_checker_spec.rb
spec/utils/import_checker_spec.rb
]
# spec.test_file = "spec_help/gem_test_suite.rb"
spec.licenses = ["MIT"]
spec.require_paths = %w[lib/]
spec.rubygems_version = "1.3.5"
spec.has_rdoc = true
spec.extra_rdoc_files = Dir.glob("doc/**/*")
spec.rdoc_options = %w{--inline-source }
spec.rdoc_options += %w{--main doc/README }
spec.rdoc_options += ["--title", "#{spec.name}-#{spec.version} Documentation"]
spec.add_dependency("edict", "< 1.0")
spec.add_dependency("caliph", "~> 0.3")
spec.add_dependency("mattock", "~> 0.10")
#spec.post_install_message = "Thanks for installing my gem!"
end