karottenreibe-vim-syntax 0.0.0 → 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/vim-syntax.gemspec +31 -0
- metadata +11 -13
- data/Rakefile +0 -16
- data/VERSION +0 -1
data/vim-syntax.gemspec
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{vim-syntax}
|
5
|
+
s.version = "0.0.2"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Fabian Streitel"]
|
9
|
+
s.date = %q{2009-06-15}
|
10
|
+
s.description = %q{Extension for syntax that highlights vim syntax.}
|
11
|
+
s.email = %q{karottenreibe@gmail.com}
|
12
|
+
s.files = %w{HISTORY.markdown README.markdown LICENSE.txt vim-syntax.gemspec lib/vim-syntax.rb}
|
13
|
+
s.has_rdoc = false
|
14
|
+
s.homepage = %q{http://github.com/karottenreibe/vim-syntax}
|
15
|
+
s.rubygems_version = %q{1.3.0}
|
16
|
+
s.summary = s.description
|
17
|
+
|
18
|
+
if s.respond_to? :specification_version then
|
19
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
20
|
+
s.specification_version = 2
|
21
|
+
|
22
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
23
|
+
s.add_runtime_dependency(%q<syntax>)
|
24
|
+
else
|
25
|
+
s.add_dependency(%q<syntax>)
|
26
|
+
end
|
27
|
+
else
|
28
|
+
s.add_dependency(%q<syntax>)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: karottenreibe-vim-syntax
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fabian Streitel
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-06-15 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -22,28 +22,26 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: "0"
|
24
24
|
version:
|
25
|
-
description:
|
25
|
+
description: Extension for syntax that highlights vim syntax.
|
26
26
|
email: karottenreibe@gmail.com
|
27
27
|
executables: []
|
28
28
|
|
29
29
|
extensions: []
|
30
30
|
|
31
|
-
extra_rdoc_files:
|
32
|
-
|
33
|
-
- README.markdown
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
34
33
|
files:
|
35
34
|
- HISTORY.markdown
|
36
|
-
- LICENSE.txt
|
37
35
|
- README.markdown
|
38
|
-
-
|
39
|
-
-
|
36
|
+
- LICENSE.txt
|
37
|
+
- vim-syntax.gemspec
|
40
38
|
- lib/vim-syntax.rb
|
41
39
|
has_rdoc: false
|
42
40
|
homepage: http://github.com/karottenreibe/vim-syntax
|
43
41
|
licenses:
|
44
42
|
post_install_message:
|
45
|
-
rdoc_options:
|
46
|
-
|
43
|
+
rdoc_options: []
|
44
|
+
|
47
45
|
require_paths:
|
48
46
|
- lib
|
49
47
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -63,7 +61,7 @@ requirements: []
|
|
63
61
|
rubyforge_project:
|
64
62
|
rubygems_version: 1.3.5
|
65
63
|
signing_key:
|
66
|
-
specification_version:
|
67
|
-
summary:
|
64
|
+
specification_version: 2
|
65
|
+
summary: Extension for syntax that highlights vim syntax.
|
68
66
|
test_files: []
|
69
67
|
|
data/Rakefile
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
require 'jeweler'
|
2
|
-
|
3
|
-
task :release do
|
4
|
-
sh "vim HISTORY.markdown"
|
5
|
-
sh "vim README.markdown"
|
6
|
-
end
|
7
|
-
|
8
|
-
Jeweler::Tasks.new do |gem|
|
9
|
-
gem.name = "vim-syntax"
|
10
|
-
gem.summary = gem.description = "A simple (!) extension to the syntax gem, that allows you to highlight vim syntax."
|
11
|
-
gem.email = "karottenreibe@gmail.com"
|
12
|
-
gem.homepage = "http://github.com/karottenreibe/vim-syntax"
|
13
|
-
gem.authors = ["Fabian Streitel"]
|
14
|
-
gem.add_dependency('syntax')
|
15
|
-
end
|
16
|
-
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.0.2
|