rapngasm 3.1.5.pre → 3.1.5

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.
Files changed (9) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +11 -0
  3. data/.rubocop.yml +14 -0
  4. data/Gemfile +12 -0
  5. data/Guardfile +12 -0
  6. data/README.md +37 -0
  7. data/Rakefile +4 -0
  8. data/rapngasm.gemspec +21 -0
  9. metadata +10 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 991c32a9ebfa5ebfc778f7b6e315fbe3c4868d7b
4
- data.tar.gz: 6b321c8c37df49455432d717aff108df8bd6932c
3
+ metadata.gz: 6ff7bd3c762a52e49341ad5b674f843f36693ea9
4
+ data.tar.gz: 171853ab21728424ee54390b95d1d5d565aed3c2
5
5
  SHA512:
6
- metadata.gz: e915286e70c7e37fdc6ea2762425c2d3c9d60a673b0cf00db0073981a7a817bdf80386dde9a308e95910b226ca07bfed659bab00122aa9258128915e72807699
7
- data.tar.gz: bf0dd34dbdc8907d7a7d14741ff13efa3e90ed5d4032541fdef004e8beac2fe8bb3b0f24b03c8f71f450dad6ff6429ea97b2756ae8631f6e22a8e4b3c0483dfc
6
+ metadata.gz: 7678c0201dff03a199f4b0eae2c05d653ae5383b9c703e41a8afc960fe76a634cf9db32357b81140ac2d4af8b081bd980588f892fc112a25cc83b4e5511c7856
7
+ data.tar.gz: 5fa7281ee939b0d1298f18bab237bf604aa3086fae000d9f24bea8054646b7a7a33b9c181ae0ad08bb7bc2ea7faba27e7008279a7cfbe51d7fbfbec7d6aa507c
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ *.swp
2
+ *.swo
3
+ *.o
4
+ *.so
5
+ Gemfile.lock
6
+ tmp/
7
+ mkmkf.log
8
+ Makefile
9
+ .DS_Store
10
+ *.bundle
11
+ spec/out/*
data/.rubocop.yml ADDED
@@ -0,0 +1,14 @@
1
+ GlobalVars:
2
+ Enabled: false # catches on extconf, which needs globals
3
+
4
+ AsciiIdentifiers:
5
+ Enabled: false
6
+
7
+ AsciiComments:
8
+ Enabled: false
9
+
10
+ AccessorMethodName:
11
+ Enabled: false
12
+
13
+ LineLength:
14
+ Max: 99
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ gem 'libnotify'
7
+ gem 'guard'
8
+ gem 'guard-rspec'
9
+ gem 'rubocop'
10
+ gem 'guard-rubocop'
11
+ # gem 'ruby-prof'
12
+ end
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
@@ -0,0 +1,4 @@
1
+ require 'rake/extensiontask'
2
+
3
+ spec = Gem::Specification.load('rapngasm.gemspec')
4
+ Rake::ExtensionTask.new('rapngasm', spec)
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.pre
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: 1.3.1
89
+ version: '0'
83
90
  requirements: []
84
91
  rubyforge_project:
85
92
  rubygems_version: 2.4.2