gtksourceview2 1.0.3-x86-mingw32 → 1.1.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/gtksourceview2/rbgtksourcebuffer.c +99 -124
- data/ext/gtksourceview2/rbgtksourceiter.c +81 -69
- data/ext/gtksourceview2/rbgtksourcelanguage.c +47 -42
- data/ext/gtksourceview2/rbgtksourcelanguagemanager.c +57 -45
- data/ext/gtksourceview2/rbgtksourcemain.c +40 -29
- data/ext/gtksourceview2/rbgtksourcemain.h +20 -10
- data/ext/gtksourceview2/rbgtksourcemark.c +32 -24
- data/ext/gtksourceview2/rbgtksourceprintcompositor.c +54 -111
- data/ext/gtksourceview2/rbgtksourcestyle.c +25 -30
- data/ext/gtksourceview2/rbgtksourcestylescheme.c +28 -25
- data/ext/gtksourceview2/rbgtksourcestyleschememanager.c +63 -51
- data/ext/gtksourceview2/rbgtksourceview.c +56 -93
- data/lib/1.8/gtksourceview2.so +0 -0
- data/lib/1.9/gtksourceview2.so +0 -0
- metadata +9 -10
- data/ChangeLog +0 -76
metadata
CHANGED
@@ -1,21 +1,21 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gtksourceview2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
|
+
- 1
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 1.0.3
|
10
|
+
version: 1.1.0
|
11
11
|
platform: x86-mingw32
|
12
12
|
authors:
|
13
|
-
- The Ruby-GNOME2
|
13
|
+
- The Ruby-GNOME2 Project Team
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2012-01-05 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: gtk2
|
@@ -25,12 +25,12 @@ dependencies:
|
|
25
25
|
requirements:
|
26
26
|
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
hash:
|
28
|
+
hash: 19
|
29
29
|
segments:
|
30
30
|
- 1
|
31
|
+
- 1
|
31
32
|
- 0
|
32
|
-
|
33
|
-
version: 1.0.3
|
33
|
+
version: 1.1.0
|
34
34
|
type: :runtime
|
35
35
|
version_requirements: *id001
|
36
36
|
description: Ruby/GtkSourceView2 is a Ruby binding of gtksourceview-2.x.
|
@@ -42,7 +42,6 @@ extensions: []
|
|
42
42
|
extra_rdoc_files: []
|
43
43
|
|
44
44
|
files:
|
45
|
-
- ChangeLog
|
46
45
|
- README
|
47
46
|
- Rakefile
|
48
47
|
- extconf.rb
|
@@ -557,7 +556,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
557
556
|
requirements: []
|
558
557
|
|
559
558
|
rubyforge_project:
|
560
|
-
rubygems_version: 1.
|
559
|
+
rubygems_version: 1.8.12
|
561
560
|
signing_key:
|
562
561
|
specification_version: 3
|
563
562
|
summary: Ruby/GtkSourceView2 is a Ruby binding of gtksourceview-2.x.
|
data/ChangeLog
DELETED
@@ -1,76 +0,0 @@
|
|
1
|
-
2011-09-15 Kouhei Sutou <kou@cozmixng.org>
|
2
|
-
|
3
|
-
* lib/gtksourceview2.rb: remove needless dirname.
|
4
|
-
Patch by HAYASHI Kentaro. Thanks!!!
|
5
|
-
|
6
|
-
2011-05-23 Kouhei Sutou <kou@cozmixng.org>
|
7
|
-
|
8
|
-
* lib/gtksourceview2.rb: supported Windows.
|
9
|
-
Reported by S.Kitagawa. Thanks!!!
|
10
|
-
|
11
|
-
2011-02-12 Kouhei Sutou <kou@cozmixng.org>
|
12
|
-
|
13
|
-
* ext/gtksourceview2/depend: fix .pc path. #3178294
|
14
|
-
Reported by OBATA Akio. Thanks!!!
|
15
|
-
|
16
|
-
2011-02-05 Masaaki Aoyagi
|
17
|
-
|
18
|
-
* ext/gtksourceview2/*.c: change to ANSI C style.
|
19
|
-
|
20
|
-
2011-01-30 Kouhei Sutou <kou@cozmixng.org>
|
21
|
-
|
22
|
-
* ./: support gem build for Windows.
|
23
|
-
|
24
|
-
2011-01-22 Masaaki Aoyagi
|
25
|
-
|
26
|
-
* src/lib/: -> lib/.
|
27
|
-
|
28
|
-
* src/: -> ext/gtksourceview2/.
|
29
|
-
|
30
|
-
* extconf.rb: -> ext/gtksourceview2/extconf.rb
|
31
|
-
|
32
|
-
* ext/gtksourceview2/extconf.rb: support directory structure change.
|
33
|
-
|
34
|
-
* extconf.rb: add.
|
35
|
-
|
36
|
-
* Rakefile: add.
|
37
|
-
|
38
|
-
2010-09-28 Kouhei Sutou <kou@cozmixng.org>
|
39
|
-
|
40
|
-
* test/run-test.rb: fix path.
|
41
|
-
|
42
|
-
2010-09-23 Kouhei Sutou <kou@cozmixng.org>
|
43
|
-
|
44
|
-
* extconf.rb: support Ruby/GLib2 directory structure change.
|
45
|
-
|
46
|
-
2008-11-09 Kouhei Sutou <kou@cozmixng.org>
|
47
|
-
|
48
|
-
* src/rbgtksourcemain.h, src/rbgtksourceprintcompositor.c: remove
|
49
|
-
needless definitions.
|
50
|
-
|
51
|
-
2008-11-01 Kouhei Sutou <kou@cozmixng.org>
|
52
|
-
|
53
|
-
* src/: use RARRAY_PTR() and RARRAY_LEN().
|
54
|
-
|
55
|
-
2008-09-30 Kouhei Sutou <kou@cozmixng.org>
|
56
|
-
|
57
|
-
* src/rbgtksourceview.c: cleanup style.
|
58
|
-
|
59
|
-
* test/test_source_view.rb: add a test.
|
60
|
-
|
61
|
-
* test/run-test.rb: setup testing environment.
|
62
|
-
|
63
|
-
* src/rbgtksourceview.c, test/test_source_view.rb: fix
|
64
|
-
Gtk::SourceView#{get,set}_mark_category_background bugs.
|
65
|
-
|
66
|
-
2008-09-21 yselkowitz
|
67
|
-
|
68
|
-
Wrap new features in 2.4.0.
|
69
|
-
* extconf.rb: Test for new functions in 2.4.
|
70
|
-
* src/rbgtksourceview.c: Add Gtk::SourceView#get_mark_category_background,
|
71
|
-
#set_mark_category_background, ::DRAW_SPACES_*.
|
72
|
-
* src/rbgtksourcelanguagemanager.c: Add Gtk::SourceLanguageManager#guess_language.
|
73
|
-
|
74
|
-
2008-07-11 yselkowitz
|
75
|
-
|
76
|
-
Initial import of gtksourceview2.
|