imgry 0.1.9 → 0.1.10
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.
- checksums.yaml +7 -0
- data/ext/mkrf_conf.rb +21 -0
- data/lib/imgry/version.rb +1 -1
- metadata +10 -13
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 713fd8aa50086eb3bd7faa9daf115307d3c22681
|
4
|
+
data.tar.gz: fecaf79af4385e03f2c855f2ac6478fb7f7c30fb
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6bcc2fd52e8f88d2dee9d3da6c86772b921a9a373960020fb70d600aa92da92d34d67b278247efc7b9d2a1596b0775898ff43446bb09c3c2b686d172e6b386c5
|
7
|
+
data.tar.gz: 81d2b6c4d5d41c95d0e5347526f61a9faf0c9800a9e9a94f7c1192180b02ac0328199d17e47d3acdcb6b618638de063a0901569c47aa8db17222d64a838391ef
|
data/ext/mkrf_conf.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rubygems/command.rb'
|
3
|
+
require 'rubygems/dependency_installer.rb'
|
4
|
+
begin
|
5
|
+
Gem::Command.build_args = ARGV
|
6
|
+
rescue NoMethodError
|
7
|
+
end
|
8
|
+
inst = Gem::DependencyInstaller.new
|
9
|
+
begin
|
10
|
+
if RUBY_ENGINE == 'jruby'
|
11
|
+
inst.install "image_voodoo"
|
12
|
+
else
|
13
|
+
inst.install "mini_magick"
|
14
|
+
end
|
15
|
+
rescue
|
16
|
+
exit(1)
|
17
|
+
end
|
18
|
+
|
19
|
+
f = File.open(File.join(File.dirname(__FILE__), "Rakefile"), "w") # create dummy rakefile to indicate success
|
20
|
+
f.write("task :default\n")
|
21
|
+
f.close
|
data/lib/imgry/version.rb
CHANGED
metadata
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imgry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.10
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Pressly
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-11-21 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rspec
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
@@ -22,7 +20,6 @@ dependencies:
|
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
25
|
- !ruby/object:Gem::Version
|
@@ -31,7 +28,8 @@ description: Fast image resizing/cropping designed for JRuby with MRI support
|
|
31
28
|
email:
|
32
29
|
- info@pressly.com
|
33
30
|
executables: []
|
34
|
-
extensions:
|
31
|
+
extensions:
|
32
|
+
- ext/mkrf_conf.rb
|
35
33
|
extra_rdoc_files: []
|
36
34
|
files:
|
37
35
|
- lib/imgry/geometry.rb
|
@@ -59,29 +57,29 @@ files:
|
|
59
57
|
- spec/support/mexico-cmyk.jpg
|
60
58
|
- spec/support/transparent_background.png
|
61
59
|
- spec/support/transparent_background_saved.png
|
60
|
+
- ext/mkrf_conf.rb
|
62
61
|
homepage: http://github.com/nulayer/imgry
|
63
62
|
licenses: []
|
63
|
+
metadata: {}
|
64
64
|
post_install_message:
|
65
65
|
rdoc_options: []
|
66
66
|
require_paths:
|
67
67
|
- lib
|
68
68
|
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
-
none: false
|
70
69
|
requirements:
|
71
|
-
- -
|
70
|
+
- - '>='
|
72
71
|
- !ruby/object:Gem::Version
|
73
72
|
version: '0'
|
74
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
-
none: false
|
76
74
|
requirements:
|
77
|
-
- -
|
75
|
+
- - '>='
|
78
76
|
- !ruby/object:Gem::Version
|
79
77
|
version: 1.3.6
|
80
78
|
requirements: []
|
81
79
|
rubyforge_project:
|
82
|
-
rubygems_version:
|
80
|
+
rubygems_version: 2.0.3
|
83
81
|
signing_key:
|
84
|
-
specification_version:
|
82
|
+
specification_version: 4
|
85
83
|
summary: Fast image resizing/cropping designed for JRuby with MRI support
|
86
84
|
test_files:
|
87
85
|
- spec/imgry/geometry_spec.rb
|
@@ -99,4 +97,3 @@ test_files:
|
|
99
97
|
- spec/support/mexico-cmyk.jpg
|
100
98
|
- spec/support/transparent_background.png
|
101
99
|
- spec/support/transparent_background_saved.png
|
102
|
-
has_rdoc:
|