pngdefry 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/lib/pngdefry.rb ADDED
@@ -0,0 +1,2 @@
1
+ require 'pngdefry/version'
2
+ require File.expand_path('../pngdefry.bundle', __FILE__)
@@ -0,0 +1,3 @@
1
+ module Pngdefry
2
+ VERSION = '0.0.1'
3
+ end
data/pngdefry.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'pngdefry/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'pngdefry'
8
+ spec.version = Pngdefry::VERSION
9
+ spec.authors = ['Sam Soffes', 'Caleb Davenport']
10
+ spec.email = ['sam@soff.es', 'calebmdavenport@gmail.com']
11
+ spec.description = 'Unfry PNGCrushed PNGs.'
12
+ spec.summary = 'Un-iPhone-PNGCrush PNGs'
13
+ spec.homepage = 'https://github.com/soffes/pngdefry'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ['lib']
20
+ spec.platform = Gem::Platform::RUBY
21
+ spec.extensions = ['ext/pngdefry/extconf.rb']
22
+
23
+ spec.add_development_dependency 'bundler', '~> 1.3'
24
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pngdefry
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Sam Soffes
8
+ - Caleb Davenport
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-11-02 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: '1.3'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: '1.3'
28
+ description: Unfry PNGCrushed PNGs.
29
+ email:
30
+ - sam@soff.es
31
+ - calebmdavenport@gmail.com
32
+ executables: []
33
+ extensions:
34
+ - ext/pngdefry/extconf.rb
35
+ extra_rdoc_files: []
36
+ files:
37
+ - .gitignore
38
+ - Gemfile
39
+ - LICENSE
40
+ - Rakefile
41
+ - Readme.markdown
42
+ - ext/pngdefry/extconf.rb
43
+ - ext/pngdefry/miniz.c
44
+ - ext/pngdefry/miniz.h
45
+ - ext/pngdefry/pngdefry.c
46
+ - lib/pngdefry.rb
47
+ - lib/pngdefry/version.rb
48
+ - pngdefry.gemspec
49
+ homepage: https://github.com/soffes/pngdefry
50
+ licenses:
51
+ - MIT
52
+ metadata: {}
53
+ post_install_message:
54
+ rdoc_options: []
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ requirements: []
68
+ rubyforge_project:
69
+ rubygems_version: 2.0.3
70
+ signing_key:
71
+ specification_version: 4
72
+ summary: Un-iPhone-PNGCrush PNGs
73
+ test_files: []