-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitmap-plus-plus.gemspec
More file actions
45 lines (41 loc) · 1.6 KB
/
bitmap-plus-plus.gemspec
File metadata and controls
45 lines (41 loc) · 1.6 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
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true
require_relative "lib/bitmap-plus-plus/version"
Gem::Specification.new do |spec|
spec.name = "bitmap-plus-plus"
spec.version = BitmapPlusPlus::VERSION
spec.authors = ["Charlie Savage"]
spec.email = ["cfis@savagexi.com"]
spec.summary = "Ruby bindings for BitmapPlusPlus, a simple C++ bitmap library"
spec.description = <<~DESC
BitmapPlusPlus is a Ruby gem that provides bindings to the BitmapPlusPlus C++ library
for creating and manipulating 24-bit BMP images. Features include drawing primitives
(lines, rectangles, triangles, circles), pixel manipulation, image transformations
(flip, rotate), and file I/O. Uses Rice for C++ to Ruby bindings.
DESC
spec.homepage = "https://github.com/ruby-rice/BitmapPlusPlus-ruby"
spec.license = "BSD-2-Clause"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/ruby-rice/BitmapPlusPlus-ruby/issues",
"changelog_uri" => "https://github.com/ruby-rice/BitmapPlusPlus-ruby/blob/main/CHANGELOG.md",
"documentation_uri" => "https://github.com/ruby-rice/BitmapPlusPlus-ruby#readme",
"source_code_uri" => "https://github.com/ruby-rice/BitmapPlusPlus-ruby"
}
spec.require_paths = ["lib"]
spec.extensions = ["ext/CMakeLists.txt"]
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.files = Dir[
"CHANGELOG.md",
"LICENSE",
"README.md",
"examples/*.*",
"ext/CMakeLists.txt",
"ext/CMakePresets.json",
"ext/*.cpp",
"ext/*.hpp",
"ext/CMakeLists.txt",
"lib/**/*.rb",
"sig/**/*.rbs",
]
end