code_color 0.0.1 → 0.0.2
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/Gemfile +1 -0
- data/code_color.gemspec +6 -4
- data/lib/code_color.rb +2 -4
- data/lib/code_color/version.rb +1 -1
- metadata +17 -5
data/Gemfile
CHANGED
data/code_color.gemspec
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
$:.push File.expand_path("../lib", __FILE__)
|
3
3
|
require "code_color/version"
|
4
|
-
|
5
4
|
Gem::Specification.new do |s|
|
6
5
|
s.name = "code_color"
|
7
6
|
s.version = CodeColor::VERSION
|
@@ -9,8 +8,8 @@ Gem::Specification.new do |s|
|
|
9
8
|
s.email = ["wjp2013@gmail.com"]
|
10
9
|
s.homepage = ""
|
11
10
|
s.summary = %q{Code Color}
|
12
|
-
s.description = %q{
|
13
|
-
|
11
|
+
s.description = %q{Ruby syntax highlighting.}
|
12
|
+
|
14
13
|
s.rubyforge_project = "code_color"
|
15
14
|
|
16
15
|
s.files = `git ls-files`.split("\n")
|
@@ -19,6 +18,9 @@ Gem::Specification.new do |s|
|
|
19
18
|
s.require_paths = ["lib"]
|
20
19
|
|
21
20
|
# specify any dependencies here; for example:
|
22
|
-
|
21
|
+
s.required_ruby_version = '>= 1.9.0'
|
22
|
+
s.add_development_dependency "rspec"
|
23
|
+
|
24
|
+
s.requirements << 'ultraviolet for ruby 1.9, git://github.com/wjp2013/ultraviolet.git'
|
23
25
|
# s.add_runtime_dependency "rest-client"
|
24
26
|
end
|
data/lib/code_color.rb
CHANGED
data/lib/code_color/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: code_color
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,8 +10,19 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-01-09 00:00:00.000000000Z
|
13
|
-
dependencies:
|
14
|
-
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: &70335799455280 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70335799455280
|
25
|
+
description: Ruby syntax highlighting.
|
15
26
|
email:
|
16
27
|
- wjp2013@gmail.com
|
17
28
|
executables: []
|
@@ -35,14 +46,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
35
46
|
requirements:
|
36
47
|
- - ! '>='
|
37
48
|
- !ruby/object:Gem::Version
|
38
|
-
version:
|
49
|
+
version: 1.9.0
|
39
50
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
51
|
none: false
|
41
52
|
requirements:
|
42
53
|
- - ! '>='
|
43
54
|
- !ruby/object:Gem::Version
|
44
55
|
version: '0'
|
45
|
-
requirements:
|
56
|
+
requirements:
|
57
|
+
- ultraviolet for ruby 1.9, git://github.com/wjp2013/ultraviolet.git
|
46
58
|
rubyforge_project: code_color
|
47
59
|
rubygems_version: 1.8.13
|
48
60
|
signing_key:
|