summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec
blob: 5f130527dd02563cc9e166b079b6f6495e697ba9 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

Gem::Specification.new do |s|
  s.name          = "custom_name"
  s.version       = "0.1.0"
  s.summary       = "A Rust extension for Ruby"
  s.extensions    = ["ext/custom_name_lib/Cargo.toml"]
  s.authors       = ["Ian Ker-Seymer"]
  s.files         = ["lib/custom_name.rb", "ext/custom_name_lib/Cargo.toml", "ext/custom_name_lib/Cargo.lock", "ext/custom_name_lib/src/lib.rs"]
end