rmagick 2.13.3.rc1 → 2.13.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rmagick might be problematic. Click here for more details.
- checksums.yaml +8 -8
- data/Rakefile +40 -0
- data/build_tarball.rake +1 -1
- data/lib/rmagick/version.rb +3 -0
- data/pkg/rmagick-2.13.3.rc1.gem +0 -0
- data/rmagick.gemspec +5 -4
- metadata +11 -8
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
N2ZlZjIzODVkZjk2YzI4NTE2ZjFlNjgzZTA2YTBjZGJiNTlkZDZlMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzdiMTk3ODVjYzM3NTc2N2FhNTlmZjhkOWIzMDMyN2EwNzdhZDUwNA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDcyZTAyMzUxMTVjOTA1NTdhMzI2ZjRmMWViNDQ3Yjg5Nzk1MzFlZTRiNmM2
|
10
|
+
OTE3OTRkNDQ4MTc5YmVlNzc1ZDljMzVmYjdjMzA1MjRjOGI0ZmVmMjhkYmJi
|
11
|
+
YjVlODgwNGQwNjE3NjhhNjY4M2Y5NDFjMTk5NmI0NGZmYzY3MGU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NTI1MjgwZmYyN2FiMDlkZmI0MDlmZmNiM2M1NTA3ODEzNjU1YmQwOTA0ZTNk
|
14
|
+
MWM4ZWEwMmM5MjEwYmJhZGQyMmU4NTc2NmI2YjRmZDBiNjQ4NmU5YjY5NTU4
|
15
|
+
YWI5NDc2MTIzN2I4MjQ3NGM1Mjc5NTQzNjVkZmY0OWMyYTc2ZmI=
|
data/Rakefile
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# note, there are other, legacy tasks in build_tarball.rake
|
2
|
+
# thate currently are run by e.g.
|
3
|
+
# rake -f build_tarball.rake clean release=RMagick_2-13-1
|
4
|
+
# rake -f build_tarball.rake release=RMagick_2-13-1
|
5
|
+
require './lib/rmagick/version'
|
6
|
+
require 'fileutils'
|
7
|
+
desc "build and push gem, tag and push repo"
|
8
|
+
task "release" do
|
9
|
+
sh("git diff --exit-code")
|
10
|
+
abort "Git repo not clean" unless $?.success?
|
11
|
+
sh("git diff-index --quiet --cached HEAD")
|
12
|
+
abort "Git repo not commited" unless $?.success?
|
13
|
+
version = Magick::VERSION
|
14
|
+
# e.g. 2.13.3 becomes RMagick_2-13-3
|
15
|
+
version_tag = "RMagick_#{version.gsub(".","-")}"
|
16
|
+
# e.g. 2.13.3 becomes rmagick-2.13.3.gem
|
17
|
+
gem_name = "rmagick-#{version}.gem"
|
18
|
+
|
19
|
+
# build gem
|
20
|
+
sh "gem build -V rmagick.gemspec"
|
21
|
+
if $?.success?
|
22
|
+
base = File.expand_path('..', __FILE__)
|
23
|
+
FileUtils.mkdir_p(File.join(base, 'pkg'))
|
24
|
+
FileUtils.mv(File.join(base, gem_name), 'pkg')
|
25
|
+
# push gem
|
26
|
+
sh "gem push #{File.join(base, 'pkg', gem_name)}"
|
27
|
+
if $?.success?
|
28
|
+
sh "git tag -a -m \"Version #{version}\" #{version_tag}"
|
29
|
+
STDOUT.puts "Tagged #{version_tag}."
|
30
|
+
sh "git push"
|
31
|
+
sh "git push --tags"
|
32
|
+
else
|
33
|
+
abort "tagging abd pushing gem failed"
|
34
|
+
end
|
35
|
+
|
36
|
+
else
|
37
|
+
STDERR.puts "Could not build gem"
|
38
|
+
exit $?.exitstatus
|
39
|
+
end
|
40
|
+
end
|
data/build_tarball.rake
CHANGED
Binary file
|
data/rmagick.gemspec
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
require 'date'
|
2
|
+
require './lib/rmagick/version'
|
2
3
|
Gem::Specification.new do |s|
|
3
4
|
s.name = %q{rmagick}
|
4
|
-
s.version =
|
5
|
+
s.version = Magick::VERSION
|
5
6
|
s.date = Date.today.to_s
|
6
7
|
s.summary = %q{Ruby binding to ImageMagick}
|
7
8
|
s.description = %q{RMagick is an interface between Ruby and ImageMagick.}
|
8
9
|
s.authors = [%q{Tim Hunter}, %q{Omer Bar-or}, %q{Benjamin Thomas}, %q{Moncef Maiza}]
|
9
|
-
s.post_install_message = "Please report any bugs.
|
10
|
-
s.email = %q{
|
11
|
-
s.homepage = %q{https://github.com/
|
10
|
+
s.post_install_message = "Please report any bugs. See https://github.com/gemhome/rmagick/compare/RMagick_2-13-2...master and https://github.com/rmagick/rmagick/issues/18"
|
11
|
+
s.email = %q{github@benjaminfleischer.com}
|
12
|
+
s.homepage = %q{https://github.com/gemhome/rmagick}
|
12
13
|
s.license = 'MIT'
|
13
14
|
s.files = Dir.glob('**/*')
|
14
15
|
s.bindir = 'bin'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rmagick
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.13.3
|
4
|
+
version: 2.13.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Hunter
|
@@ -11,10 +11,10 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-07-
|
14
|
+
date: 2014-07-31 00:00:00.000000000 Z
|
15
15
|
dependencies: []
|
16
16
|
description: RMagick is an interface between Ruby and ImageMagick.
|
17
|
-
email:
|
17
|
+
email: github@benjaminfleischer.com
|
18
18
|
executables: []
|
19
19
|
extensions:
|
20
20
|
- ext/RMagick/extconf.rb
|
@@ -26,6 +26,7 @@ files:
|
|
26
26
|
- README
|
27
27
|
- README-Mac-OSX.txt
|
28
28
|
- README.rc
|
29
|
+
- Rakefile
|
29
30
|
- build_tarball.rake
|
30
31
|
- doc/comtasks.html
|
31
32
|
- doc/constants.html
|
@@ -355,6 +356,7 @@ files:
|
|
355
356
|
- ext/RMagick/rmstruct.c
|
356
357
|
- ext/RMagick/rmutil.c
|
357
358
|
- lib/RMagick.rb
|
359
|
+
- lib/rmagick/version.rb
|
358
360
|
- lib/rvg/clippath.rb
|
359
361
|
- lib/rvg/container.rb
|
360
362
|
- lib/rvg/deep_equal.rb
|
@@ -371,6 +373,7 @@ files:
|
|
371
373
|
- lib/rvg/transformable.rb
|
372
374
|
- lib/rvg/units.rb
|
373
375
|
- metaconfig
|
376
|
+
- pkg/rmagick-2.13.3.rc1.gem
|
374
377
|
- post-clean.rb
|
375
378
|
- post-install.rb
|
376
379
|
- post-setup.rb
|
@@ -392,12 +395,12 @@ files:
|
|
392
395
|
- test/cmyk.icm
|
393
396
|
- test/srgb.icm
|
394
397
|
- uninstall.rb
|
395
|
-
homepage: https://github.com/
|
398
|
+
homepage: https://github.com/gemhome/rmagick
|
396
399
|
licenses:
|
397
400
|
- MIT
|
398
401
|
metadata: {}
|
399
|
-
post_install_message: Please report any bugs.
|
400
|
-
|
402
|
+
post_install_message: Please report any bugs. See https://github.com/gemhome/rmagick/compare/RMagick_2-13-2...master
|
403
|
+
and https://github.com/rmagick/rmagick/issues/18
|
401
404
|
rdoc_options: []
|
402
405
|
require_paths:
|
403
406
|
- lib
|
@@ -409,9 +412,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
409
412
|
version: 1.8.5
|
410
413
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
411
414
|
requirements:
|
412
|
-
- - ! '
|
415
|
+
- - ! '>='
|
413
416
|
- !ruby/object:Gem::Version
|
414
|
-
version:
|
417
|
+
version: '0'
|
415
418
|
requirements:
|
416
419
|
- ImageMagick 6.4.9 or later
|
417
420
|
rubyforge_project: rmagick
|