rapngasm 3.1.5.pre → 3.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +11 -0
- data/.rubocop.yml +14 -0
- data/Gemfile +12 -0
- data/Guardfile +12 -0
- data/README.md +37 -0
- data/Rakefile +4 -0
- data/rapngasm.gemspec +21 -0
- metadata +10 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ff7bd3c762a52e49341ad5b674f843f36693ea9
|
4
|
+
data.tar.gz: 171853ab21728424ee54390b95d1d5d565aed3c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7678c0201dff03a199f4b0eae2c05d653ae5383b9c703e41a8afc960fe76a634cf9db32357b81140ac2d4af8b081bd980588f892fc112a25cc83b4e5511c7856
|
7
|
+
data.tar.gz: 5fa7281ee939b0d1298f18bab237bf604aa3086fae000d9f24bea8054646b7a7a33b9c181ae0ad08bb7bc2ea7faba27e7008279a7cfbe51d7fbfbec7d6aa507c
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
data/Gemfile
ADDED
data/Guardfile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
guard :rubocop do
|
2
|
+
watch(%r{.+\.rb$})
|
3
|
+
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
|
4
|
+
end
|
5
|
+
|
6
|
+
guard :rspec do
|
7
|
+
watch(%r{^spec/.+_spec\.rb$})
|
8
|
+
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
|
9
|
+
watch('spec/spec_helper.rb') { "spec" }
|
10
|
+
|
11
|
+
watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
|
12
|
+
end
|
data/README.md
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
rapngasm [![Gem Version](https://badge.fury.io/rb/rapngasm.svg)](http://badge.fury.io/rb/rapngasm)
|
2
|
+
========
|
3
|
+
Ruby interface for apngasm
|
4
|
+
|
5
|
+
Requirements
|
6
|
+
------------
|
7
|
+
rapngasm requires libapngasm. Install instructions can be found in the "Installing" section [here](https://github.com/apngasm/apngasm).
|
8
|
+
|
9
|
+
Building
|
10
|
+
--------
|
11
|
+
```
|
12
|
+
rake compile
|
13
|
+
```
|
14
|
+
|
15
|
+
Specs!
|
16
|
+
------
|
17
|
+
```
|
18
|
+
rspec
|
19
|
+
```
|
20
|
+
|
21
|
+
License
|
22
|
+
-------
|
23
|
+
libpng
|
24
|
+
|
25
|
+
Support
|
26
|
+
-------
|
27
|
+
File a github issue
|
28
|
+
|
29
|
+
Expediated Support
|
30
|
+
------------------
|
31
|
+
PayPal to corporate@genshin.org
|
32
|
+
|
33
|
+
Copyright
|
34
|
+
---------
|
35
|
+
Genshin Souzou Kabushiki Kaisha
|
36
|
+
apngasm is copyright Max Stepin & Genshin Souzou K.K.
|
37
|
+
|
data/Rakefile
ADDED
data/rapngasm.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'rapngasm'
|
3
|
+
s.version = '3.1.5'
|
4
|
+
s.license = 'libpng/zlib'
|
5
|
+
s.summary = 'apngasm for Ruby'
|
6
|
+
s.description = 'Ruby native extension for the apngasm APNG Assembler.'
|
7
|
+
s.authors = ['Rei Kagetsuki', 'Rika Yoshida']
|
8
|
+
s.email = 'zero@genshin.org'
|
9
|
+
s.homepage = 'http://www.github.com/apngasm/rapngasm'
|
10
|
+
|
11
|
+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } +
|
12
|
+
Dir.glob('ext/**/*.{h,c,cpp,rb}') +
|
13
|
+
Dir.glob('lib/**/*.rb') +
|
14
|
+
Dir.glob('vendor/**/*')
|
15
|
+
|
16
|
+
s.extensions << 'ext/rapngasm/extconf.rb'
|
17
|
+
s.require_paths = ['lib', 'ext']
|
18
|
+
|
19
|
+
s.add_development_dependency 'rake-compiler', '~> 0.9', '~> 0.9.2'
|
20
|
+
s.add_development_dependency 'rice', '~> 1.6', '~> 1.6.2'
|
21
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rapngasm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.5
|
4
|
+
version: 3.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rei Kagetsuki
|
@@ -58,9 +58,16 @@ extensions:
|
|
58
58
|
- ext/rapngasm/extconf.rb
|
59
59
|
extra_rdoc_files: []
|
60
60
|
files:
|
61
|
+
- ".gitignore"
|
62
|
+
- ".rubocop.yml"
|
63
|
+
- Gemfile
|
64
|
+
- Guardfile
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
61
67
|
- ext/rapngasm/apngasm_ruby.h
|
62
68
|
- ext/rapngasm/extconf.rb
|
63
69
|
- ext/rapngasm/rapngasm.cpp
|
70
|
+
- rapngasm.gemspec
|
64
71
|
homepage: http://www.github.com/apngasm/rapngasm
|
65
72
|
licenses:
|
66
73
|
- libpng/zlib
|
@@ -77,9 +84,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
84
|
version: '0'
|
78
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
86
|
requirements:
|
80
|
-
- - "
|
87
|
+
- - ">="
|
81
88
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
89
|
+
version: '0'
|
83
90
|
requirements: []
|
84
91
|
rubyforge_project:
|
85
92
|
rubygems_version: 2.4.2
|