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

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