skia 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,93 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: skia
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Yudai Takada
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: ffi
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '1.15'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '1.15'
26
+ description: Ruby bindings for Skia, providing high-performance 2D graphics capabilities
27
+ email:
28
+ - t.yudai92@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - CHANGELOG.md
34
+ - LICENSE
35
+ - README.md
36
+ - Rakefile
37
+ - examples/avatar_generator.rb
38
+ - examples/bar_chart.rb
39
+ - examples/basic_drawing.rb
40
+ - examples/gradient.rb
41
+ - examples/pdf_output.rb
42
+ - examples/picture_recording.rb
43
+ - examples/progress_gauge.rb
44
+ - examples/social_card.rb
45
+ - examples/text_drawing.rb
46
+ - lib/skia.rb
47
+ - lib/skia/base.rb
48
+ - lib/skia/canvas.rb
49
+ - lib/skia/color.rb
50
+ - lib/skia/data.rb
51
+ - lib/skia/document.rb
52
+ - lib/skia/font.rb
53
+ - lib/skia/image.rb
54
+ - lib/skia/matrix.rb
55
+ - lib/skia/native.rb
56
+ - lib/skia/native/callbacks.rb
57
+ - lib/skia/native/functions.rb
58
+ - lib/skia/native/types.rb
59
+ - lib/skia/paint.rb
60
+ - lib/skia/path.rb
61
+ - lib/skia/picture.rb
62
+ - lib/skia/point.rb
63
+ - lib/skia/rect.rb
64
+ - lib/skia/shader.rb
65
+ - lib/skia/surface.rb
66
+ - lib/skia/typeface.rb
67
+ - lib/skia/version.rb
68
+ - skia-ruby.gemspec
69
+ homepage: https://github.com/ydah/skia-ruby
70
+ licenses:
71
+ - MIT
72
+ metadata:
73
+ homepage_uri: https://github.com/ydah/skia-ruby
74
+ source_code_uri: https://github.com/ydah/skia-ruby/tree/v0.1.0
75
+ changelog_uri: https://github.com/ydah/skia-ruby/blob/v0.1.0/CHANGELOG.md
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 3.0.0
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubygems_version: 4.0.3
91
+ specification_version: 4
92
+ summary: Ruby bindings for Google Skia 2D graphics library
93
+ test_files: []