forked from espen/librato-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
librato-rails.gemspec
38 lines (29 loc) · 1.32 KB
/
librato-rails.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
$:.push File.expand_path("../lib", __FILE__)
require "librato/rails/version"
Gem::Specification.new do |s|
s.name = "librato-rails"
s.version = Librato::Rails::VERSION
s.authors = ["Matt Sanders"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/librato/librato-rails"
s.license = 'BSD 3-clause'
s.summary = "Use Librato Metrics with your Rails 3 app"
s.description = "Report key app statistics to the Librato Metrics service and easily track your own custom metrics."
s.files = Dir["{app,config,db,lib}/**/*"]
s.files += ["LICENSE", "Rakefile", "README.md", "CHANGELOG.md", "FAQ.md"]
s.test_files = Dir["test/**/*"]
# ignore temporary files
s.test_files.reject! { |file| file =~ /dummy\/tmp\/[a-z]+\// }
s.test_files.reject! { |file| file =~ /dummy\/db\/.*\.sqlite3/ }
s.test_files.reject! { |file| file =~ /dummy\/log\/.*\.log/ }
s.add_dependency "railties", ">= 3.0"
s.add_dependency "activesupport", ">= 3.0"
s.add_dependency "librato-rack", "~> 2.0.0"
s.add_development_dependency "sqlite3", ">= 1.3"
s.add_development_dependency "capybara", "~> 2.0.3"
s.add_development_dependency "rails", ">= 3.0"
s.cert_chain = ["certs/librato-public.pem"]
if ENV['GEM_SIGNING_KEY']
s.signing_key = ENV['GEM_SIGNING_KEY']
end
end