cairo 1.15.8-x64-mingw32 → 1.15.9-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/NEWS +14 -0
  3. data/ext/cairo/rb_cairo.h +1 -1
  4. data/lib/2.2/cairo.so +0 -0
  5. data/lib/2.3/cairo.so +0 -0
  6. data/lib/2.4/cairo.so +0 -0
  7. data/lib/cairo.rb +9 -3
  8. data/vendor/local/bin/fc-cache.exe +0 -0
  9. data/vendor/local/bin/fc-cat.exe +0 -0
  10. data/vendor/local/bin/fc-list.exe +0 -0
  11. data/vendor/local/bin/fc-match.exe +0 -0
  12. data/vendor/local/bin/fc-pattern.exe +0 -0
  13. data/vendor/local/bin/fc-query.exe +0 -0
  14. data/vendor/local/bin/fc-scan.exe +0 -0
  15. data/vendor/local/bin/fc-validate.exe +0 -0
  16. data/vendor/local/bin/libcairo-2.dll +0 -0
  17. data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
  18. data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
  19. data/vendor/local/bin/libfontconfig-1.dll +0 -0
  20. data/vendor/local/bin/libfreetype-6.dll +0 -0
  21. data/vendor/local/bin/libpixman-1-0.dll +0 -0
  22. data/vendor/local/bin/libpng16-16.dll +0 -0
  23. data/vendor/local/bin/libxml2-2.dll +0 -0
  24. data/vendor/local/bin/png-fix-itxt.exe +0 -0
  25. data/vendor/local/bin/pngfix.exe +0 -0
  26. data/vendor/local/bin/xmlcatalog.exe +0 -0
  27. data/vendor/local/bin/xmllint.exe +0 -0
  28. data/vendor/local/bin/zlib1211.dll +0 -0
  29. data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
  30. data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
  31. data/vendor/local/lib/libcairo.dll.a +0 -0
  32. data/vendor/local/lib/libfontconfig.dll.a +0 -0
  33. data/vendor/local/lib/libfreetype.dll.a +0 -0
  34. data/vendor/local/lib/libpixman-1.dll.a +0 -0
  35. data/vendor/local/lib/libpng.dll.a +0 -0
  36. data/vendor/local/lib/libpng16.dll.a +0 -0
  37. data/vendor/local/lib/libxml2.dll.a +0 -0
  38. data/vendor/local/lib/libz.dll.a +0 -0
  39. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82ee4dc122d3000fbb31cbeb42fd39a4b8f29872
4
- data.tar.gz: 53f84f9c20a8a5786cffdde5493dce38f627118e
3
+ metadata.gz: 9628b453119ca047558822f51b5d344e9bba3f19
4
+ data.tar.gz: 4c346e96472eb43dfdd199592915265491ff3057
5
5
  SHA512:
6
- metadata.gz: 2edd5b53c134a9f9b7f12e1703055df6ae15d2aae91066d58bb66b291c5953bc8ee38901413902ac156034b2661b46c68e474e52b9438751b66ebf8bd1d1ca61
7
- data.tar.gz: cf26fdb1fcfd7f4cb20766b51e2c4bbbf9486f9bcc1f9765a59b89655e5aa381dce46f659671247e41a3ba8ab4af8fc058690da63be64891247538b78f7dc0cd
6
+ metadata.gz: f80adb90ddc12dba5552cdbf07840b02e9a5bbdb530c539101907c036fb47becf3b69541c4714c72c4055a5a05e2a958bcefbfff4ba9f91911a2c9c2dcd4864f
7
+ data.tar.gz: 20909541b35815235fc2d3dd2dc4e94828e4a6695d4970ce9053bd7c82cdad4be54ca111a356764f7c367d21b472ef1d57d7f6eceb7a331003f4d0f587c4fd23
data/NEWS CHANGED
@@ -1,3 +1,17 @@
1
+ Release 1.15.9 (2017-06-03) Kouhei Sutou <kou@cozmixng.org>
2
+ ===========================================================
3
+
4
+ Improvements
5
+ ------------
6
+
7
+ * Supported RubyInstaller2.
8
+ [GitHub#47][Reported by PLURIX]
9
+
10
+ Thanks
11
+ ------
12
+
13
+ * PLURIX
14
+
1
15
  Release 1.15.8 (2017-05-29) Kouhei Sutou <kou@cozmixng.org>
2
16
  ===========================================================
3
17
 
data/ext/cairo/rb_cairo.h CHANGED
@@ -73,7 +73,7 @@ RB_CAIRO_BEGIN_DECLS
73
73
 
74
74
  #define RB_CAIRO_VERSION_MAJOR 1
75
75
  #define RB_CAIRO_VERSION_MINOR 15
76
- #define RB_CAIRO_VERSION_MICRO 8
76
+ #define RB_CAIRO_VERSION_MICRO 9
77
77
 
78
78
  RB_CAIRO_VAR VALUE rb_mCairo;
79
79
  RB_CAIRO_VAR VALUE rb_cCairo_Context;
data/lib/2.2/cairo.so CHANGED
Binary file
data/lib/2.3/cairo.so CHANGED
Binary file
data/lib/2.4/cairo.so CHANGED
Binary file
data/lib/cairo.rb CHANGED
@@ -6,9 +6,15 @@ if /mingw|mswin|mswin32/ =~ RUBY_PLATFORM
6
6
  base_dir = base_dir.parent + "vendor" + "local"
7
7
  if base_dir.exist?
8
8
  base_dir = base_dir.to_s.gsub(/\//, "\\")
9
- ENV["PATH"] = %w(bin lib).collect do |dir|
10
- "#{base_dir}\\#{dir};"
11
- end.join("") + ENV["PATH"]
9
+ begin
10
+ require "ruby_installer/runtime"
11
+ rescue LoadError
12
+ ENV["PATH"] = %w(bin lib).collect do |dir|
13
+ "#{base_dir}\\#{dir};"
14
+ end.join("") + ENV["PATH"]
15
+ else
16
+ RubyInstaller::Runtime.add_dll_directory("#{base_dir}\\bin")
17
+ end
12
18
  else
13
19
  require "rbconfig"
14
20
  ENV["PATH"] = %w(bin lib).collect do |dir|
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cairo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.8
4
+ version: 1.15.9
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Kouhei Sutou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-29 00:00:00.000000000 Z
11
+ date: 2017-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pkg-config