-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruuid.gemspec
More file actions
33 lines (29 loc) · 1.16 KB
/
ruuid.gemspec
File metadata and controls
33 lines (29 loc) · 1.16 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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruuid/version'
Gem::Specification.new do |spec|
spec.name = "rust_uuid"
spec.version = Ruuid::VERSION
spec.authors = ["blackanger"]
spec.email = ["blackanger.z@gmail.com"]
spec.summary = 'UUID generator dancing with Rust'
spec.description = 'UUID generator dancing with Rust'
spec.homepage = "https://github.com/RustStudy/ruuid"
spec.license = "MIT"
spec.files = [
"Cargo.lock", "Cargo.toml", "Gemfile",
"MIT-LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup",
"ext/ruuid/extconf.rb", "ruuid.gemspec"
]
spec.files += Dir['lib/**/*']
spec.files += Dir['src/**/*']
spec.extensions << "ext/ruuid/extconf.rb"
spec.require_paths = ["lib"]
spec.add_dependency "bundler", "~> 1.12"
spec.add_dependency "rake", "~> 12.0"
spec.add_dependency "ffi", "~> 1.9"
spec.add_development_dependency "method_source", "~> 0.8.2"
spec.add_development_dependency "minitest", "~> 5.10"
spec.add_development_dependency "minitest-reporters", "~> 1.1"
end