-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcibuildgem.gemspec
More file actions
36 lines (29 loc) · 1.39 KB
/
cibuildgem.gemspec
File metadata and controls
36 lines (29 loc) · 1.39 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
32
33
34
35
36
# frozen_string_literal: true
require_relative "lib/cibuildgem/version"
Gem::Specification.new do |spec|
spec.name = "cibuildgem"
spec.version = Cibuildgem::VERSION
spec.authors = ["Shopify"]
spec.email = ["rails@shopify.com"]
spec.summary = "Assist developers to distrute gems with precompiled binaries."
spec.description = <<~MSG
Gems with native extensions are the main bottleneck for a user when running `bundle install`.
This gem aims to provide the Ruby community an easy to opt-in and quick way to distribute their
gems with precompiled binaries.
This toolchain works with a native CI based compilation approach using GitHub actions. It piggyback on
top of popular tools in the Ruby ecosystem that maintainers are used to such as Rake Compiler and ruby/setup-ruby.
MSG
spec.homepage = "https://github.com/shopify/cibuildwheel"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/shopify/cibuildwheel"
spec.files = Dir["{exe,lib}/**/*", "LICENSE.md", "README.md"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency("prism")
spec.add_dependency("rake-compiler")
spec.add_dependency("thor")
end