rapngasm 3.1.6 → 3.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 27844c3f79c19e937f8ce086f1a6b70b1c82c94e
4
- data.tar.gz: 00ca5f83d43192d7ab9e2270b9efd99ecb37240f
3
+ metadata.gz: f62bad49972953e85ba8dab7d48939c4804e1e89
4
+ data.tar.gz: 961521c383324ad26f5b1c909aea2ae29e14c08e
5
5
  SHA512:
6
- metadata.gz: 7b35e6d7e01cd920ef1b9b2711eafeb0c655a3e8a98e67b8f3910366b3b40b433553a65c38e6e067404e744474390ef2f7c32be719e8dc69f7ace0733f811e9f
7
- data.tar.gz: 766d77b7f57de234412a60a059a8dcdea9f8f0b3eaae57022120ff5f043b651091fb71bae18629f4804c90c610d7548ddced10e2011760f85eafba84e3657d0b
6
+ metadata.gz: 70be502c18f5a01b72050c5a9c6dd17ed5aa3f9121de1478ee3d0fe3e154ffc5c264ab07993f69136bd70ee12c27bca106d5e62b6a5d3f45fb2cf69fb9095bef
7
+ data.tar.gz: 75e175e67f81d463767c169087838a23a87d3ee3261f359e84732487c7aa715c22d90b937f37e851b6a1fa03ebdcdf49a78397a109a4efb10a1ad6ae26c7af8d
@@ -1,3 +1,4 @@
1
+ require 'rubygems'
1
2
  require 'mkmf-rice'
2
3
 
3
4
  $CFLAGS = '-x c++'
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'rapngasm'
3
- s.version = '3.1.6'
3
+ s.version = '3.1.7'
4
4
  s.license = 'libpng/zlib'
5
5
  s.summary = 'apngasm for Ruby'
6
6
  s.description = 'Ruby native extension for the apngasm APNG Assembler.'
@@ -8,14 +8,18 @@ Gem::Specification.new do |s|
8
8
  s.email = 'zero@genshin.org'
9
9
  s.homepage = 'http://www.github.com/apngasm/rapngasm'
10
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}') +
11
+ s.files = Dir.glob('ext/**/*.{h,c,cpp,rb}') +
13
12
  Dir.glob('lib/**/*.rb') +
14
- Dir.glob('vendor/**/*')
13
+ Dir.glob('vendor/**/*') +
14
+ ['rapngasm.gemspec']
15
15
 
16
16
  s.extensions << 'ext/rapngasm/extconf.rb'
17
17
  s.require_paths = ['lib', 'ext']
18
-
18
+
19
+ # As of 3.1.7 we will expect full native compilation.
20
+ # This is to avoid version issues. Precompiled native gems
21
+ # would be nice if we could version lock them to native lib
22
+ # versions...
19
23
  s.add_development_dependency 'rake-compiler', '~> 0.9', '~> 0.9.5'
20
24
  s.add_development_dependency 'rice', '~> 1.7', '~> 1.7.0'
21
25
  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.6
4
+ version: 3.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rei Kagetsuki
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-01-07 00:00:00.000000000 Z
12
+ date: 2015-11-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake-compiler
@@ -58,12 +58,6 @@ 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
67
61
  - ext/rapngasm/apngasm_ruby.h
68
62
  - ext/rapngasm/extconf.rb
69
63
  - ext/rapngasm/rapngasm.cpp
@@ -89,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
83
  version: '0'
90
84
  requirements: []
91
85
  rubyforge_project:
92
- rubygems_version: 2.4.5
86
+ rubygems_version: 2.4.8
93
87
  signing_key:
94
88
  specification_version: 4
95
89
  summary: apngasm for Ruby
data/.gitignore DELETED
@@ -1,11 +0,0 @@
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/*
@@ -1,14 +0,0 @@
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 DELETED
@@ -1,12 +0,0 @@
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 DELETED
@@ -1,12 +0,0 @@
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 DELETED
@@ -1,37 +0,0 @@
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 DELETED
@@ -1,4 +0,0 @@
1
- require 'rake/extensiontask'
2
-
3
- spec = Gem::Specification.load('rapngasm.gemspec')
4
- Rake::ExtensionTask.new('rapngasm', spec)