forked from Shopify/bootsnap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootsnap.gemspec
39 lines (31 loc) · 1.17 KB
/
bootsnap.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bootsnap/version'
Gem::Specification.new do |spec|
spec.name = "bootsnap"
spec.version = Bootsnap::VERSION
spec.authors = ["Burke Libbey"]
spec.email = ["[email protected]"]
spec.license = "MIT"
spec.summary = "Boot large ruby/rails apps faster"
spec.description = spec.summary
spec.homepage = "https://github.com/Shopify/bootsnap"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.0.0'
if RUBY_PLATFORM =~ /java/
spec.platform = 'java'
else
spec.platform = Gem::Platform::RUBY
spec.extensions = ['ext/bootsnap/extconf.rb']
end
spec.add_development_dependency "bundler", '~> 1'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rake-compiler', '~> 0'
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "mocha", "~> 1.2"
spec.add_runtime_dependency "msgpack", "~> 1.0"
end