rouge 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,6 +6,8 @@ module Rouge
6
6
  filenames '*.cs'
7
7
  mimetypes 'text/x-csharp'
8
8
 
9
+ desc 'a multi-paradigm language targeting .NET'
10
+
9
11
  # TODO: support more of unicode
10
12
  id = /@?[_a-z]\w*/i
11
13
 
@@ -4,7 +4,9 @@ module Rouge
4
4
  module Lexers
5
5
  class Gherkin < RegexLexer
6
6
  tag 'gherkin'
7
- aliases 'cucumber'
7
+ aliases 'cucumber', 'behat'
8
+
9
+ desc 'A business-readable spec DSL ( github.com/cucumber/cucumber/wiki/Gherkin )'
8
10
 
9
11
  filenames '*.feature'
10
12
  mimetypes 'text/x-gherkin'
@@ -2,6 +2,7 @@ module Rouge
2
2
  module Lexers
3
3
  class LiterateCoffeescript < RegexLexer
4
4
  tag 'literate_coffeescript'
5
+ desc 'Literate coffeescript'
5
6
  aliases 'litcoffee'
6
7
  filenames '*.litcoffee'
7
8
 
@@ -3,8 +3,8 @@ module Rouge
3
3
  Lexer.load_const :C, 'c.rb'
4
4
 
5
5
  class ObjectiveC < C
6
- desc 'objective_c'
7
6
  tag 'objective_c'
7
+ desc 'an extension of C commonly used to write Apple software'
8
8
  aliases 'objc'
9
9
  filenames '*.m', '*.h'
10
10
 
@@ -2,7 +2,7 @@
2
2
  module Rouge
3
3
  module Lexers
4
4
  class Racket < RegexLexer
5
- desc "Racket is a Lisp descended from Scheme"
5
+ desc "Racket is a Lisp descended from Scheme (racket-lang.org)"
6
6
 
7
7
  tag 'racket'
8
8
  filenames '*.rkt', '*.rktd', '*.rktl'
data/lib/rouge/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Rouge
2
2
  def self.version
3
- "1.3.0"
3
+ "1.3.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rouge
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-23 00:00:00.000000000 Z
12
+ date: 2013-12-24 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Rouge aims to a be a simple, easy-to-extend drop-in replacement for pygments.
15
15
  email: