forked from exceptional/exceptional
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexceptional.gemspec
More file actions
31 lines (31 loc) · 1.15 KB
/
exceptional.gemspec
File metadata and controls
31 lines (31 loc) · 1.15 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
Gem::Specification.new do |s|
s.name = "exceptional"
s.version = "0.0.3"
s.date = "2008-11-4"
s.summary = "Exceptional is the core Ruby library for communicating with http://getexceptional.com (hosted error tracking service)"
s.email = "david@getexceptional.com"
s.homepage = "http://github.com/contrast/exceptional"
s.description = "Exceptional is the core Ruby library for communicating with http://getexceptional.com (hosted error tracking service)"
s.has_rdoc = true
s.authors = ["David Rice", "Paul Campbell"]
s.files = ["History.txt",
"Manifest",
"README",
"Rakefile",
"exceptional.gemspec",
"exceptional.yml",
"init.rb",
"install.rb",
"lib/exceptional/exception_data.rb",
"lib/exceptional/integration/rails.rb",
"lib/exceptional/rails.rb",
"lib/exceptional/version.rb",
"lib/exceptional.rb"]
s.test_files = ["spec/exception_data_spec.rb",
"spec/exceptional_rescue_from_spec.rb",
"spec/exceptional_spec.rb",
"spec/spec_helper.rb"]
s.rdoc_options = ["--main", "README"]
s.extra_rdoc_files = ["History.txt", "Manifest", "README"]
s.add_dependency("json", ["> 0.0.0"])
end