cairo 1.8.4 → 1.8.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cairo might be problematic. Click here for more details.

Files changed (5) hide show
  1. data/NEWS +3 -2
  2. data/Rakefile +1 -1
  3. data/ext/cairo/rb_cairo.c +1 -1
  4. metadata +3 -4
  5. data/doc/doc.css +0 -91
data/NEWS CHANGED
@@ -1,16 +1,17 @@
1
- Release 1.8.4 (2010-08-27) Kouhei Sutou <kou@cozmixng.org>)
1
+ Release 1.8.5 (2010-08-28) Kouhei Sutou <kou@cozmixng.org>)
2
2
  ===========================================================
3
3
 
4
4
  Fixes
5
5
  -----
6
6
  * Fix build system. (patch by kimura watasu and suggested by OBATA Akio)
7
- * Fix Windows gem. (reported by Dominic Sisneros)
7
+ * Fix Windows gem. (reported by Dominic Sisneros, supported by Masayas TARUI)
8
8
 
9
9
  Thanks
10
10
  ------
11
11
  * Dominic Sisneros
12
12
  * kimura wataru
13
13
  * OBATA Akio
14
+ * Masayas TARUI
14
15
 
15
16
  Release 1.8.3 (2010-08-26) Kouhei Sutou <kou@cozmixng.org>)
16
17
  ===========================================================
data/Rakefile CHANGED
@@ -94,7 +94,7 @@ Rake::ExtensionTask.new("cairo", project.spec) do |ext|
94
94
  end
95
95
 
96
96
  task :add_win32_binaries do
97
- cairo_win32_dir = File.join(base_dir, "vendor", "local")
97
+ cairo_win32_dir = File.join("vendor", "local")
98
98
  cairo_files = []
99
99
  Find.find(cairo_win32_dir) do |f|
100
100
  cairo_files << f
data/ext/cairo/rb_cairo.c CHANGED
@@ -76,7 +76,7 @@ Init_cairo ()
76
76
 
77
77
  rb_define_const (rb_mCairo, "BINDINGS_VERSION",
78
78
  rb_ary_new3 (4,
79
- INT2FIX (1), INT2FIX (8), INT2FIX (4), Qnil));
79
+ INT2FIX (1), INT2FIX (8), INT2FIX (5), Qnil));
80
80
 
81
81
  rb_define_module_function (rb_mCairo, "satisfied_version?",
82
82
  rb_cairo_satisfied_version, -1);
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cairo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 63
4
+ hash: 61
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 8
9
- - 4
10
- version: 1.8.4
9
+ - 5
10
+ version: 1.8.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Evan Marin
@@ -37,7 +37,6 @@ files:
37
37
  - GPL
38
38
  - NEWS
39
39
  - Rakefile
40
- - doc/doc.css
41
40
  - ext/cairo/cairo.def
42
41
  - ext/cairo/extconf.rb
43
42
  - ext/cairo/rb_cairo.c
data/doc/doc.css DELETED
@@ -1,91 +0,0 @@
1
- body
2
- {
3
- background-color: white;
4
- margin: 1em;
5
- }
6
-
7
- h1
8
- {
9
- background-image: url(rcairo-title.png);
10
- background-repeat: no-repeat;
11
- background-position: right top;
12
- padding-top: 50px;
13
- }
14
-
15
- h2
16
- {
17
- border-top: solid 1px black;
18
- padding-top: 0.5em;
19
- }
20
-
21
- body > ul > li
22
- {
23
- line-height: 150%;
24
- }
25
-
26
- code
27
- {
28
- font: monospace;
29
- font-style: italic;
30
- }
31
-
32
- dt
33
- {
34
- margin-bottom: 1em;
35
- margin: 1.5em;
36
- }
37
-
38
- dt code
39
- {
40
- font-weight: bold;
41
- padding: 0.5em;
42
- background: #eeeeee;
43
- border: solid 1px #aaaaaa;
44
- }
45
-
46
- dd
47
- {
48
- margin-bottom: 2em;
49
- line-height: 150%;
50
- padding: 1em;
51
- padding-top: 0em;
52
- border-bottom: 1px solid #ffaaaa;
53
- border-right: 2px solid #ffaaaa;
54
- }
55
-
56
- pre
57
- {
58
- background: #ffeeee;
59
- border: solid 1px #ffaaaa;
60
- padding: 0.5em;
61
- margin-left: 1em;
62
- font: monospace;
63
- }
64
-
65
- em
66
- {
67
- color: #cb2327;
68
- font-weight: bold;
69
- }
70
-
71
- div.header,
72
- div.footer
73
- {
74
- background: #ffeeee;
75
- border: solid 1px #ffaaaa;
76
- }
77
-
78
- div.header ul,
79
- div.footer ul
80
- {
81
- padding-left: 1em;
82
- }
83
-
84
- div.header ul li,
85
- div.footer ul li
86
- {
87
- display: inline;
88
- background: #eeeeee;
89
- border: solid 1px #aaaaaa;
90
- padding: 0.5em 1em;
91
- }