coderay 1.0.0.738.pre → 1.0.0.778.pre
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.
- data/{lib/README → README.rdoc} +0 -0
- data/Rakefile +5 -5
- data/lib/coderay.rb +2 -2
- data/lib/coderay/encoder.rb +4 -4
- data/lib/coderay/encoders/_map.rb +3 -1
- data/lib/coderay/encoders/html.rb +9 -17
- data/lib/coderay/encoders/html/numbering.rb +5 -5
- data/lib/coderay/encoders/html/output.rb +3 -3
- data/lib/coderay/encoders/lines_of_code.rb +6 -9
- data/lib/coderay/encoders/statistic.rb +26 -25
- data/lib/coderay/encoders/terminal.rb +2 -2
- data/lib/coderay/encoders/text.rb +9 -9
- data/lib/coderay/encoders/xml.rb +8 -8
- data/lib/coderay/encoders/yaml.rb +5 -6
- data/lib/coderay/for_redcloth.rb +1 -1
- data/lib/coderay/helpers/file_type.rb +44 -42
- data/lib/coderay/helpers/plugin.rb +9 -17
- data/lib/coderay/helpers/word_list.rb +65 -126
- data/lib/coderay/scanner.rb +13 -5
- data/lib/coderay/scanners/_map.rb +3 -2
- data/lib/coderay/scanners/c.rb +5 -5
- data/lib/coderay/scanners/clojure.rb +27 -14
- data/lib/coderay/scanners/cpp.rb +5 -5
- data/lib/coderay/scanners/css.rb +1 -1
- data/lib/coderay/scanners/html.rb +60 -29
- data/lib/coderay/scanners/java.rb +2 -2
- data/lib/coderay/scanners/java_script.rb +1 -1
- data/lib/coderay/scanners/nitro_xhtml.rb +1 -1
- data/lib/coderay/scanners/php.rb +4 -4
- data/lib/coderay/scanners/python.rb +2 -2
- data/lib/coderay/scanners/rhtml.rb +1 -1
- data/lib/coderay/scanners/ruby.rb +4 -11
- data/lib/coderay/scanners/ruby/patterns.rb +1 -1
- data/lib/coderay/scanners/scheme.rb +2 -2
- data/lib/coderay/scanners/sql.rb +26 -19
- data/lib/coderay/scanners/text.rb +26 -0
- data/lib/coderay/styles/alpha.rb +7 -6
- data/lib/coderay/token_kinds.rb +5 -5
- data/test/functional/basic.rb +1 -1
- data/test/functional/examples.rb +5 -3
- metadata +85 -85
- data/lib/coderay/scanners/plaintext.rb +0 -26
@@ -27,7 +27,7 @@ module Scanners
|
|
27
27
|
|
28
28
|
IDENT_KIND = WordList.new(:ident).
|
29
29
|
add(RESERVED_WORDS, :reserved).
|
30
|
-
add(PREDEFINED_CONSTANTS, :
|
30
|
+
add(PREDEFINED_CONSTANTS, :predefined_constant)
|
31
31
|
|
32
32
|
KEYWORD_NEW_STATE = WordList.new(:initial).
|
33
33
|
add(%w[ def ], :def_expected).
|
@@ -84,13 +84,13 @@ module CodeRay
|
|
84
84
|
if match = scan(/ \s+ | \\\n /x)
|
85
85
|
encoder.text_token match, :space
|
86
86
|
elsif match = scan(/['\(\[\)\]]|#\(/)
|
87
|
-
encoder.text_token match, :operator
|
87
|
+
encoder.text_token match, :operator
|
88
88
|
elsif match = scan(/;.*/)
|
89
89
|
encoder.text_token match, :comment
|
90
90
|
elsif match = scan(/#\\(?:newline|space|.?)/)
|
91
91
|
encoder.text_token match, :char
|
92
92
|
elsif match = scan(/#[ft]/)
|
93
|
-
encoder.text_token match, :
|
93
|
+
encoder.text_token match, :predefined_constant
|
94
94
|
elsif match = scan(/#{IDENTIFIER}/o)
|
95
95
|
encoder.text_token match, ident_kind[matched]
|
96
96
|
elsif match = scan(/\./)
|
data/lib/coderay/scanners/sql.rb
CHANGED
@@ -5,26 +5,27 @@ module CodeRay module Scanners
|
|
5
5
|
|
6
6
|
register_for :sql
|
7
7
|
|
8
|
-
|
9
|
-
all and as before begin by case collate
|
10
|
-
|
11
|
-
for foreign from group if inner is join
|
12
|
-
like not on or order outer
|
13
|
-
then to
|
8
|
+
KEYWORDS = %w(
|
9
|
+
all and any as before begin between by case check collate
|
10
|
+
each else end exists
|
11
|
+
for foreign from full group having if in inner is join
|
12
|
+
like not of on or order outer over references
|
13
|
+
then to union using values when where
|
14
14
|
left right distinct
|
15
15
|
)
|
16
16
|
|
17
17
|
OBJECTS = %w(
|
18
|
-
database databases table tables column columns index
|
18
|
+
database databases table tables column columns fields index constraint
|
19
|
+
constraints transaction function procedure row key view trigger
|
19
20
|
)
|
20
21
|
|
21
22
|
COMMANDS = %w(
|
22
23
|
add alter comment create delete drop grant insert into select update set
|
23
|
-
show
|
24
|
+
show prompt begin commit rollback replace truncate
|
24
25
|
)
|
25
26
|
|
26
27
|
PREDEFINED_TYPES = %w(
|
27
|
-
char varchar enum binary text tinytext mediumtext
|
28
|
+
char varchar varchar2 enum binary text tinytext mediumtext
|
28
29
|
longtext blob tinyblob mediumblob longblob timestamp
|
29
30
|
date time datetime year double decimal float int
|
30
31
|
integer tinyint mediumint bigint smallint unsigned bit
|
@@ -33,16 +34,20 @@ module CodeRay module Scanners
|
|
33
34
|
|
34
35
|
PREDEFINED_FUNCTIONS = %w( sum cast substring abs pi count min max avg now )
|
35
36
|
|
36
|
-
DIRECTIVES = %w(
|
37
|
+
DIRECTIVES = %w(
|
38
|
+
auto_increment unique default charset initially deferred
|
39
|
+
deferrable cascade immediate read write asc desc after
|
40
|
+
primary foreign return engine
|
41
|
+
)
|
37
42
|
|
38
43
|
PREDEFINED_CONSTANTS = %w( null true false )
|
39
44
|
|
40
45
|
IDENT_KIND = CaseIgnoringWordList.new(:ident).
|
41
|
-
add(
|
46
|
+
add(KEYWORDS, :keyword).
|
42
47
|
add(OBJECTS, :type).
|
43
48
|
add(COMMANDS, :class).
|
44
|
-
add(PREDEFINED_TYPES, :
|
45
|
-
add(PREDEFINED_CONSTANTS, :
|
49
|
+
add(PREDEFINED_TYPES, :predefined_type).
|
50
|
+
add(PREDEFINED_CONSTANTS, :predefined_constant).
|
46
51
|
add(PREDEFINED_FUNCTIONS, :predefined).
|
47
52
|
add(DIRECTIVES, :directive)
|
48
53
|
|
@@ -56,6 +61,7 @@ module CodeRay module Scanners
|
|
56
61
|
state = :initial
|
57
62
|
string_type = nil
|
58
63
|
string_content = ''
|
64
|
+
name_expected = false
|
59
65
|
|
60
66
|
until eos?
|
61
67
|
|
@@ -70,7 +76,8 @@ module CodeRay module Scanners
|
|
70
76
|
elsif match = scan(%r( /\* (!)? (?: .*? \*/ | .* ) )mx)
|
71
77
|
encoder.text_token match, self[1] ? :directive : :comment
|
72
78
|
|
73
|
-
elsif match = scan(/ [
|
79
|
+
elsif match = scan(/ [*\/=<>:;,!&^|()\[\]{}~%] | [-+\.](?!\d) /x)
|
80
|
+
name_expected = true if match == '.' && check(/[A-Za-z_]/)
|
74
81
|
encoder.text_token match, :operator
|
75
82
|
|
76
83
|
elsif match = scan(/(#{STRING_PREFIXES})?([`"'])/o)
|
@@ -83,8 +90,8 @@ module CodeRay module Scanners
|
|
83
90
|
encoder.text_token match, :delimiter
|
84
91
|
|
85
92
|
elsif match = scan(/ @? [A-Za-z_][A-Za-z_0-9]* /x)
|
86
|
-
|
87
|
-
|
93
|
+
encoder.text_token match, name_expected ? :ident : (match[0] == ?@ ? :variable : IDENT_KIND[match])
|
94
|
+
name_expected = false
|
88
95
|
|
89
96
|
elsif match = scan(/0[xX][0-9A-Fa-f]+/)
|
90
97
|
encoder.text_token match, :hex
|
@@ -92,14 +99,14 @@ module CodeRay module Scanners
|
|
92
99
|
elsif match = scan(/0[0-7]+(?![89.eEfF])/)
|
93
100
|
encoder.text_token match, :oct
|
94
101
|
|
95
|
-
elsif match = scan(/(?>\d+)(?![.eEfF])/)
|
102
|
+
elsif match = scan(/[-+]?(?>\d+)(?![.eEfF])/)
|
96
103
|
encoder.text_token match, :integer
|
97
104
|
|
98
|
-
elsif match = scan(
|
105
|
+
elsif match = scan(/[-+]?(?:\d[fF]|\d*\.\d+(?:[eE][+-]?\d+)?|\d+[eE][+-]?\d+)/)
|
99
106
|
encoder.text_token match, :float
|
100
107
|
|
101
108
|
elsif match = scan(/\\N/)
|
102
|
-
encoder.text_token match, :
|
109
|
+
encoder.text_token match, :predefined_constant
|
103
110
|
|
104
111
|
else
|
105
112
|
encoder.text_token getch, :error
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module CodeRay
|
2
|
+
module Scanners
|
3
|
+
|
4
|
+
# Scanner for plain text.
|
5
|
+
#
|
6
|
+
# Yields just one token of the kind :plain.
|
7
|
+
#
|
8
|
+
# Alias: +plaintext+, +plain+
|
9
|
+
class Text < Scanner
|
10
|
+
|
11
|
+
register_for :text
|
12
|
+
title 'Plain text'
|
13
|
+
|
14
|
+
KINDS_NOT_LOC = [:plain] # :nodoc:
|
15
|
+
|
16
|
+
protected
|
17
|
+
|
18
|
+
def scan_tokens encoder, options
|
19
|
+
encoder.text_token string, :plain
|
20
|
+
encoder
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
end
|
data/lib/coderay/styles/alpha.rb
CHANGED
@@ -30,8 +30,9 @@ table.CodeRay td { padding: 2px 4px; vertical-align: top; }
|
|
30
30
|
background-color: #{numbers_background};
|
31
31
|
color: gray;
|
32
32
|
text-align: right;
|
33
|
-
-moz-user-select: none;
|
34
33
|
-webkit-user-select: none;
|
34
|
+
-moz-user-select: none;
|
35
|
+
user-select: none;
|
35
36
|
}
|
36
37
|
.CodeRay .line_numbers a, .CodeRay .no a {
|
37
38
|
background-color: #{numbers_background} !important;
|
@@ -58,9 +59,9 @@ table.CodeRay td { padding: 2px 4px; vertical-align: top; }
|
|
58
59
|
.c .dl { color:#444 }
|
59
60
|
.c .ch { color:#444 }
|
60
61
|
|
61
|
-
.ch { color:#
|
62
|
-
.ch .k { color:#
|
63
|
-
.ch .dl { color:#
|
62
|
+
.ch { color:#D20 }
|
63
|
+
.ch .k { color:#D20 }
|
64
|
+
.ch .dl { color:#710 }
|
64
65
|
|
65
66
|
.cl { color:#B06; font-weight:bold }
|
66
67
|
.cm { color:#A08 }
|
@@ -100,7 +101,7 @@ table.CodeRay td { padding: 2px 4px; vertical-align: top; }
|
|
100
101
|
.pd { color:#369; font-weight:bold }
|
101
102
|
.pp { color:#579 }
|
102
103
|
.ps { color:#00C; font-weight:bold }
|
103
|
-
.pt { color:#
|
104
|
+
.pt { color:#0a5; font-weight:bold }
|
104
105
|
.r { color:#080; font-weight:bold }
|
105
106
|
.kw { color:#080; font-weight:bold }
|
106
107
|
|
@@ -131,7 +132,7 @@ table.CodeRay td { padding: 2px 4px; vertical-align: top; }
|
|
131
132
|
.ta { color:#070 }
|
132
133
|
.ts { color:#D70; font-weight:bold }
|
133
134
|
.ty { color:#339; font-weight:bold }
|
134
|
-
.v { color:#
|
135
|
+
.v { color:#037 }
|
135
136
|
.xt { color:#444 }
|
136
137
|
|
137
138
|
.ins { background: hsla(120,100%,50%,0.2) }
|
data/lib/coderay/token_kinds.rb
CHANGED
@@ -9,7 +9,7 @@ module CodeRay
|
|
9
9
|
# speedup
|
10
10
|
TokenKinds.compare_by_identity if TokenKinds.respond_to? :compare_by_identity
|
11
11
|
|
12
|
-
TokenKinds.update
|
12
|
+
TokenKinds.update( # :nodoc:
|
13
13
|
:annotation => 'at',
|
14
14
|
:attribute_name => 'an',
|
15
15
|
:attribute_value => 'av',
|
@@ -55,8 +55,8 @@ module CodeRay
|
|
55
55
|
:oct => 'oc',
|
56
56
|
:predefined => 'pd',
|
57
57
|
:preprocessor => 'pp',
|
58
|
-
:
|
59
|
-
:
|
58
|
+
:predefined_constant => 'pc',
|
59
|
+
:predefined_type => 'pt',
|
60
60
|
:pseudo_class => 'ps',
|
61
61
|
:regexp => 'rx',
|
62
62
|
:reserved => 'r',
|
@@ -80,8 +80,8 @@ module CodeRay
|
|
80
80
|
:operator => false, # 'op'
|
81
81
|
|
82
82
|
:space => false, # 'sp'
|
83
|
-
:plain => false
|
84
|
-
|
83
|
+
:plain => false
|
84
|
+
)
|
85
85
|
|
86
86
|
TokenKinds[:method] = TokenKinds[:function]
|
87
87
|
TokenKinds[:escape] = TokenKinds[:delimiter]
|
data/test/functional/basic.rb
CHANGED
@@ -149,7 +149,7 @@ more code # and another comment, in-line.
|
|
149
149
|
|
150
150
|
def test_list_of_scanners
|
151
151
|
assert_kind_of(Array, CodeRay::Scanners.list)
|
152
|
-
assert CodeRay::Scanners.list.include?(:
|
152
|
+
assert CodeRay::Scanners.list.include?(:text)
|
153
153
|
end
|
154
154
|
|
155
155
|
def test_token_kinds
|
data/test/functional/examples.rb
CHANGED
@@ -65,16 +65,18 @@ Tokens 26
|
|
65
65
|
Non-Whitespace 15
|
66
66
|
Bytes Total 31
|
67
67
|
|
68
|
-
Token Types (
|
68
|
+
Token Types (7):
|
69
69
|
type count ratio size (average)
|
70
70
|
-------------------------------------------------------------
|
71
71
|
TOTAL 26 100.00 % 1.2
|
72
72
|
delimiter 6 23.08 % 1.0
|
73
73
|
operator 5 19.23 % 1.0
|
74
74
|
space 5 19.23 % 1.0
|
75
|
-
|
75
|
+
key 4 15.38 % 0.0
|
76
|
+
:begin_group 3 11.54 % 0.0
|
77
|
+
:end_group 3 11.54 % 0.0
|
76
78
|
content 3 11.54 % 4.3
|
77
|
-
|
79
|
+
string 2 7.69 % 0.0
|
78
80
|
integer 1 3.85 % 2.0
|
79
81
|
|
80
82
|
STATISTIC
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: coderay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease: 10
|
5
|
-
version: 1.0.0.
|
5
|
+
version: 1.0.0.778.pre
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- murphy
|
@@ -10,105 +10,102 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-
|
13
|
+
date: 2011-06-12 00:00:00 Z
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
email: murphy@rubychan.de
|
16
|
+
description: Fast and easy syntax highlighting for selected languages, written in Ruby. Comes with RedCloth integration and LOC counter.
|
17
|
+
email:
|
18
|
+
- murphy@rubychan.de
|
21
19
|
executables:
|
22
20
|
- coderay
|
23
21
|
- coderay_stylesheet
|
24
22
|
extensions: []
|
25
23
|
|
26
24
|
extra_rdoc_files:
|
27
|
-
-
|
25
|
+
- README.rdoc
|
28
26
|
- FOLDERS
|
29
27
|
files:
|
30
|
-
-
|
31
|
-
-
|
32
|
-
-
|
33
|
-
-
|
34
|
-
-
|
35
|
-
-
|
36
|
-
-
|
37
|
-
-
|
38
|
-
-
|
39
|
-
-
|
40
|
-
-
|
41
|
-
-
|
42
|
-
-
|
43
|
-
-
|
44
|
-
-
|
45
|
-
-
|
46
|
-
-
|
47
|
-
-
|
48
|
-
-
|
49
|
-
-
|
50
|
-
-
|
51
|
-
-
|
52
|
-
-
|
53
|
-
-
|
54
|
-
-
|
55
|
-
-
|
56
|
-
-
|
57
|
-
-
|
58
|
-
-
|
59
|
-
-
|
60
|
-
-
|
61
|
-
-
|
62
|
-
-
|
63
|
-
-
|
64
|
-
-
|
65
|
-
-
|
66
|
-
-
|
67
|
-
-
|
68
|
-
-
|
69
|
-
-
|
70
|
-
-
|
71
|
-
-
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
76
|
-
-
|
77
|
-
-
|
78
|
-
-
|
79
|
-
-
|
80
|
-
-
|
81
|
-
-
|
82
|
-
-
|
83
|
-
-
|
84
|
-
-
|
85
|
-
-
|
86
|
-
-
|
87
|
-
-
|
88
|
-
-
|
89
|
-
-
|
90
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
- lib/README
|
102
|
-
- FOLDERS
|
28
|
+
- lib/coderay/duo.rb
|
29
|
+
- lib/coderay/encoder.rb
|
30
|
+
- lib/coderay/encoders/_map.rb
|
31
|
+
- lib/coderay/encoders/comment_filter.rb
|
32
|
+
- lib/coderay/encoders/count.rb
|
33
|
+
- lib/coderay/encoders/debug.rb
|
34
|
+
- lib/coderay/encoders/div.rb
|
35
|
+
- lib/coderay/encoders/filter.rb
|
36
|
+
- lib/coderay/encoders/html/css.rb
|
37
|
+
- lib/coderay/encoders/html/numbering.rb
|
38
|
+
- lib/coderay/encoders/html/output.rb
|
39
|
+
- lib/coderay/encoders/html.rb
|
40
|
+
- lib/coderay/encoders/json.rb
|
41
|
+
- lib/coderay/encoders/lines_of_code.rb
|
42
|
+
- lib/coderay/encoders/null.rb
|
43
|
+
- lib/coderay/encoders/page.rb
|
44
|
+
- lib/coderay/encoders/span.rb
|
45
|
+
- lib/coderay/encoders/statistic.rb
|
46
|
+
- lib/coderay/encoders/terminal.rb
|
47
|
+
- lib/coderay/encoders/text.rb
|
48
|
+
- lib/coderay/encoders/token_kind_filter.rb
|
49
|
+
- lib/coderay/encoders/xml.rb
|
50
|
+
- lib/coderay/encoders/yaml.rb
|
51
|
+
- lib/coderay/for_redcloth.rb
|
52
|
+
- lib/coderay/helpers/file_type.rb
|
53
|
+
- lib/coderay/helpers/gzip.rb
|
54
|
+
- lib/coderay/helpers/plugin.rb
|
55
|
+
- lib/coderay/helpers/word_list.rb
|
56
|
+
- lib/coderay/scanner.rb
|
57
|
+
- lib/coderay/scanners/_map.rb
|
58
|
+
- lib/coderay/scanners/c.rb
|
59
|
+
- lib/coderay/scanners/clojure.rb
|
60
|
+
- lib/coderay/scanners/cpp.rb
|
61
|
+
- lib/coderay/scanners/css.rb
|
62
|
+
- lib/coderay/scanners/debug.rb
|
63
|
+
- lib/coderay/scanners/delphi.rb
|
64
|
+
- lib/coderay/scanners/diff.rb
|
65
|
+
- lib/coderay/scanners/groovy.rb
|
66
|
+
- lib/coderay/scanners/html.rb
|
67
|
+
- lib/coderay/scanners/java/builtin_types.rb
|
68
|
+
- lib/coderay/scanners/java.rb
|
69
|
+
- lib/coderay/scanners/java_script.rb
|
70
|
+
- lib/coderay/scanners/json.rb
|
71
|
+
- lib/coderay/scanners/nitro_xhtml.rb
|
72
|
+
- lib/coderay/scanners/php.rb
|
73
|
+
- lib/coderay/scanners/python.rb
|
74
|
+
- lib/coderay/scanners/raydebug.rb
|
75
|
+
- lib/coderay/scanners/rhtml.rb
|
76
|
+
- lib/coderay/scanners/ruby/patterns.rb
|
77
|
+
- lib/coderay/scanners/ruby/string_state.rb
|
78
|
+
- lib/coderay/scanners/ruby.rb
|
79
|
+
- lib/coderay/scanners/scheme.rb
|
80
|
+
- lib/coderay/scanners/sql.rb
|
81
|
+
- lib/coderay/scanners/text.rb
|
82
|
+
- lib/coderay/scanners/xml.rb
|
83
|
+
- lib/coderay/scanners/yaml.rb
|
84
|
+
- lib/coderay/style.rb
|
85
|
+
- lib/coderay/styles/_map.rb
|
86
|
+
- lib/coderay/styles/alpha.rb
|
87
|
+
- lib/coderay/styles/cycnus.rb
|
88
|
+
- lib/coderay/styles/murphy.rb
|
89
|
+
- lib/coderay/token_kinds.rb
|
90
|
+
- lib/coderay/tokens.rb
|
91
|
+
- lib/coderay.rb
|
92
|
+
- Rakefile
|
93
|
+
- README.rdoc
|
94
|
+
- LICENSE
|
95
|
+
- test/functional/basic.rb
|
96
|
+
- test/functional/examples.rb
|
97
|
+
- test/functional/for_redcloth.rb
|
98
|
+
- test/functional/suite.rb
|
103
99
|
- bin/coderay
|
104
100
|
- bin/coderay_stylesheet
|
101
|
+
- FOLDERS
|
105
102
|
homepage: http://coderay.rubychan.de
|
106
103
|
licenses: []
|
107
104
|
|
108
105
|
post_install_message:
|
109
106
|
rdoc_options:
|
110
107
|
- -SNw2
|
111
|
-
- -
|
108
|
+
- -mREADME.rdoc
|
112
109
|
- -t CodeRay Documentation
|
113
110
|
require_paths:
|
114
111
|
- lib
|
@@ -117,7 +114,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
117
114
|
requirements:
|
118
115
|
- - ">="
|
119
116
|
- !ruby/object:Gem::Version
|
120
|
-
version:
|
117
|
+
version: "0"
|
121
118
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
122
119
|
none: false
|
123
120
|
requirements:
|
@@ -127,9 +124,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
124
|
requirements: []
|
128
125
|
|
129
126
|
rubyforge_project: coderay
|
130
|
-
rubygems_version: 1.
|
127
|
+
rubygems_version: 1.8.5
|
131
128
|
signing_key:
|
132
129
|
specification_version: 3
|
133
130
|
summary: Fast syntax highlighting for selected languages.
|
134
131
|
test_files:
|
135
|
-
-
|
132
|
+
- test/functional/basic.rb
|
133
|
+
- test/functional/examples.rb
|
134
|
+
- test/functional/for_redcloth.rb
|
135
|
+
- test/functional/suite.rb
|