-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtunemygc.gemspec
29 lines (26 loc) · 1.13 KB
/
tunemygc.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
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tunemygc/version'
Gem::Specification.new do |s|
s.name = "tunemygc"
s.version = TuneMyGc::VERSION
s.summary = "TuneMyGC - optimal MRI Ruby 2.1+ Garbage Collection"
s.description = "Agent for the GC tuning webservice https://www.tunemygc.com - optimal settings for throughput and memory usage of Ruby applications"
s.authors = ["Bear Metal"]
s.email = ["[email protected]"]
s.license = "MIT"
s.homepage = "https://tunemygc.com"
s.date = Time.now.utc.strftime('%Y-%m-%d')
s.platform = Gem::Platform::RUBY
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.extensions = "ext/tunemygc/extconf.rb"
s.test_files = `git ls-files test`.split($/)
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.1.0'
s.add_development_dependency('rake', '~> 10.3')
s.add_development_dependency('rake-compiler', '~> 0.9', '>= 0.9.5')
s.add_development_dependency('webmock', '~> 1.2', '>= 1.2.0')
s.add_development_dependency('mocha', '~> 1.1.0')
end