Sha256: 1f07895c19872b211be399ea9559eb04145ae324ad6feaab80fca490dabae20d

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rust_example/version'

Gem::Specification.new do |spec|
  spec.name          = "rust_example"
  spec.version       = RustExample::VERSION
  spec.authors       = ["Steve Klabnik"]
  spec.email         = ["steve@steveklabnik.com"]
  spec.summary       = %q{A Ruby gem, implemented in Rust.}
  spec.description   = %q{A Ruby gem, implemented in the Rust programming language. http://rust-lang.org}
  spec.homepage      = "https://github.com/steveklabnik/rust_example"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  # This only works on Linux for now, but might as well make it generic for the
  # future
  spec.platform = Gem::Platform::CURRENT

  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake"

  spec.executables = "rust_example"

  spec.extensions << "ext/rust_example/extconf.rb"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rust_example-0.2.0-x86_64-linux rust_example.gemspec