-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluoride-collector.gemspec
56 lines (48 loc) · 1.88 KB
/
fluoride-collector.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
Gem::Specification.new do |spec|
spec.name = "fluoride-collector"
spec.version = "0.0.10"
author_list = {
"Judson Lester" => '[email protected]',
"Evan Down" => '[email protected]'
}
spec.authors = author_list.keys
spec.email = spec.authors.map {|name| author_list[name]}
spec.summary = "Middleware to collect request and reponse pairs"
spec.description = <<-EndDescription
Part of the Fluoride suite - tools for making your black box a bit whiter
EndDescription
spec.homepage = "http://nyarly.github.com/#{spec.name.downcase}"
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/fluoride-collector/rails/railtie.rb
lib/fluoride-collector/config.rb
lib/fluoride-collector/middleware/collect-exchanges.rb
lib/fluoride-collector/middleware/collect-exceptions.rb
lib/fluoride-collector/rails.rb
lib/fluoride-collector/storage/fs.rb
lib/fluoride-collector/storage/s3.rb
lib/fluoride-collector/storage.rb
lib/fluoride-collector/middleware.rb
lib/fluoride-collector.rb
spec/railtie.rb
spec/middleware.rb
spec_help/spec_helper.rb
spec_help/gem_test_suite.rb
spec_help/railtie-help.rb
spec_help/file-sandbox.rb
certs/ca-certificates.crt
]
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("", "> 0")
#spec.post_install_message = "Thanks for installing my gem!"
end