forked from skylightio/skylight-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskylight.gemspec
34 lines (26 loc) · 851 Bytes
/
skylight.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
$:.push "#{File.expand_path('..', __FILE__)}/lib"
# Maintain your gem's version:
require "skylight/version"
Gem::Specification.new do |s|
s.name = "skylight"
s.version = Skylight::VERSION.gsub("-", ".")
s.platform = Gem::Platform::RUBY
s.authors = ["Tilde, Inc."]
s.email = ["[email protected]"]
s.homepage = "http://www.skylight.io"
s.summary = "Skylight is a smart profiler for Rails apps"
s.required_ruby_version = ">= 1.9.2"
files = `git ls-files`.split("\n") rescue []
files &= (
Dir['lib/**/*.{rb,pem}'] +
Dir['ext/**/*.{h,c,rb,yml}'] +
Dir['*.md'])
s.files = files
s.require_paths = ["lib"]
# Dependencies
s.add_dependency('activesupport', '>= 3.0.0')
# Executables
s.executables = %w(skylight)
# Extensions
s.extensions << "ext/extconf.rb"
end