syntax 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,5 +1,8 @@
1
1
  Syntax: a syntax highlighting library for Ruby.
2
2
 
3
+ 1.2.1 01 June 2016
4
+ Explicitly require 'set' - @jberkel.
5
+
3
6
  1.2.0 02 Jan 2014
4
7
  Cleaned up Gemspec, added license and homepage - @grosser.
5
8
 
@@ -12,8 +12,8 @@ This is a simple syntax highlighting library for Ruby. It is a naive syntax anal
12
12
 
13
13
  There are primarily two uses for the Syntax library:
14
14
 
15
- # Convert text from a supported syntax to a supported highlight format (like HTML).
16
- # Tokenize text in a supported syntax and process the tokens directly.
15
+ * Convert text from a supported syntax to a supported highlight format (like HTML).
16
+ * Tokenize text in a supported syntax and process the tokens directly.
17
17
 
18
18
  === Highlighting a supported syntax
19
19
 
@@ -1,4 +1,5 @@
1
1
  require 'syntax'
2
+ require 'set'
2
3
 
3
4
  module Syntax
4
5
 
@@ -2,7 +2,7 @@ module Syntax
2
2
  module Version
3
3
  MAJOR=1
4
4
  MINOR=2
5
- TINY=0
5
+ TINY=1
6
6
 
7
7
  STRING=[MAJOR,MINOR,TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: syntax
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.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: 2014-01-02 00:00:00.000000000 Z
12
+ date: 2016-06-01 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Syntax is Ruby library for performing simple syntax highlighting.
15
15
  email: jamis@jamisbuck.org
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
54
  version: '0'
55
55
  requirements: []
56
56
  rubyforge_project:
57
- rubygems_version: 1.8.25
57
+ rubygems_version: 1.8.30
58
58
  signing_key:
59
59
  specification_version: 3
60
60
  summary: Perform simple syntax highlighting.