yard-pygments 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ DESC
14
14
  gem.homepage = "http://github.com/nex3/yard-pygments"
15
15
  gem.authors = ["Nathan Weizenbaum"]
16
16
  gem.add_dependency('yard', '~> 0.5.3')
17
- gem.add_dependency('rb-pygments', '= 0.1.0')
17
+ gem.add_dependency('rb-pygments', '>= 0.1.0')
18
18
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
19
19
  end
20
20
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
File without changes
@@ -0,0 +1,56 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{yard-pygments}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Nathan Weizenbaum"]
12
+ s.date = %q{2010-01-24}
13
+ s.description = %q{A plugin for the YARD documentation system that adds syntax highlighting
14
+ for a wide variety of languages using the Pygments highlighter.
15
+ }
16
+ s.email = %q{nex342@gmail.com}
17
+ s.extra_rdoc_files = [
18
+ "README.md"
19
+ ]
20
+ s.files = [
21
+ ".gitignore",
22
+ ".yardopts",
23
+ "MIT-LICENSE",
24
+ "README.md",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "bin/.gitignore",
28
+ "lib/yard-pygments.rb",
29
+ "templates/default/fulldoc/html/pygments.erb",
30
+ "templates/default/fulldoc/html/setup.rb",
31
+ "templates/default/layout/html/headers.erb",
32
+ "yard-pygments.gemspec"
33
+ ]
34
+ s.homepage = %q{http://github.com/nex3/yard-pygments}
35
+ s.rdoc_options = ["--charset=UTF-8"]
36
+ s.require_paths = ["lib"]
37
+ s.rubygems_version = %q{1.3.5}
38
+ s.summary = %q{Pygments-based syntax highlighting for YARD.}
39
+
40
+ if s.respond_to? :specification_version then
41
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
42
+ s.specification_version = 3
43
+
44
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
45
+ s.add_runtime_dependency(%q<yard>, ["~> 0.5.3"])
46
+ s.add_runtime_dependency(%q<rb-pygments>, [">= 0.1.0"])
47
+ else
48
+ s.add_dependency(%q<yard>, ["~> 0.5.3"])
49
+ s.add_dependency(%q<rb-pygments>, [">= 0.1.0"])
50
+ end
51
+ else
52
+ s.add_dependency(%q<yard>, ["~> 0.5.3"])
53
+ s.add_dependency(%q<rb-pygments>, [">= 0.1.0"])
54
+ end
55
+ end
56
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yard-pygments
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Weizenbaum
@@ -28,7 +28,7 @@ dependencies:
28
28
  version_requirement:
29
29
  version_requirements: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "="
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: 0.1.0
34
34
  version:
@@ -50,10 +50,12 @@ files:
50
50
  - README.md
51
51
  - Rakefile
52
52
  - VERSION
53
+ - bin/.gitignore
53
54
  - lib/yard-pygments.rb
54
55
  - templates/default/fulldoc/html/pygments.erb
55
56
  - templates/default/fulldoc/html/setup.rb
56
57
  - templates/default/layout/html/headers.erb
58
+ - yard-pygments.gemspec
57
59
  has_rdoc: true
58
60
  homepage: http://github.com/nex3/yard-pygments
59
61
  licenses: []