-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple-proj.gemspec
More file actions
26 lines (23 loc) · 832 Bytes
/
Copy pathsimple-proj.gemspec
File metadata and controls
26 lines (23 loc) · 832 Bytes
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
Gem::Specification::new do |s|
version = "1.2.0"
files = Dir.glob("**/*") - [
Dir.glob("simple-proj-*.gem"),
Dir.glob("doc/**/*"),
Dir.glob("examples/**/*"),
].flatten
s.platform = Gem::Platform::RUBY
s.name = "simple-proj"
s.summary = "Ruby extension library for PROJ 7"
s.description = <<-HERE
Ruby extension library for PROJ 7
HERE
s.version = version
s.license = 'MIT'
s.author = "Hiroki Motoyoshi"
s.email = ""
s.homepage = 'https://github.com/himotoyoshi/simple-proj'
s.files = files
s.extensions = [ "ext/extconf.rb" ]
s.required_ruby_version = ">= 2.4.0"
s.add_runtime_dependency 'bindata', '~> 2.4', '>= 2.4.8'
end