yard-redcarpet-ext 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +35 -0
- data/Rakefile +1 -0
- data/lib/yard-redcarpet-ext.rb +2 -0
- data/lib/yard/redcarpet/ext.rb +62 -0
- data/lib/yard/redcarpet/ext/version.rb +7 -0
- data/yard-redcarpet-ext.gemspec +25 -0
- metadata +110 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Akzhan Abdulin
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# YARD::Redcarpet::Ext
|
2
|
+
|
3
|
+
Enables Redcarpet extensions for YARD.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'yard-redcarpet-ext'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install yard-redcarpet-ext
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Add `--plugin redcarpet-ext` option to your `.yardopts` or call `yard` with this option.
|
22
|
+
|
23
|
+
Create new file named `.yard_redcarpet_ext` with all needed Redcarpet extensions like tables separated by comma or newline.
|
24
|
+
|
25
|
+
Another way to specify extensions is setting of YARD_REDCARPET_EXTS environment variable. Extensions should be separated by comma.
|
26
|
+
|
27
|
+
You must have `gem 'yard-redcarpet-ext'` string in your Gemfile or development dependency in gemspec if it exists.
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
|
31
|
+
1. Fork it
|
32
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
33
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
34
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
35
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require "yard/redcarpet/ext/version"
|
2
|
+
|
3
|
+
require 'yard'
|
4
|
+
|
5
|
+
module YARD
|
6
|
+
module Redcarpet
|
7
|
+
module Ext
|
8
|
+
CONFIG_FILE = '.yard_redcarpet_ext'.freeze
|
9
|
+
ENV_VAR = 'YARD_REDCARPET_EXTS'.freeze
|
10
|
+
|
11
|
+
DEFAULT_REDCARPET_EXTS = %w[
|
12
|
+
no_intraemphasis
|
13
|
+
gh_blockcode
|
14
|
+
fenced_code
|
15
|
+
autolink
|
16
|
+
].freeze
|
17
|
+
|
18
|
+
def self.exts_from_config
|
19
|
+
return [] unless File.readable?(CONFIG_FILE)
|
20
|
+
IO.read(CONFIG_FILE).split(/(?:\s*,\s*)|\n/).select { |ext| !ext.empty? }
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.exts_from_env
|
24
|
+
val = ENV[ENV_VAR]
|
25
|
+
return [] unless val
|
26
|
+
val.split(/\s*,\s*/).select { |ext| !ext.empty? }
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.redcarpet_exts
|
30
|
+
@redcarpet_exts ||= begin
|
31
|
+
exts = []
|
32
|
+
exts += DEFAULT_REDCARPET_EXTS
|
33
|
+
exts += exts_from_config
|
34
|
+
exts += exts_from_env
|
35
|
+
exts.uniq.map { |ext| ext.to_sym }
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def self.install
|
40
|
+
YARD::Templates::Helpers::HtmlHelper.module_eval do
|
41
|
+
alias :html_markup_markdown_noredcarpet :html_markup_markdown
|
42
|
+
|
43
|
+
# Converts Markdown to HTML
|
44
|
+
# @param [String] text input Markdown text
|
45
|
+
# @return [String] output HTML
|
46
|
+
# @since 0.6.0
|
47
|
+
def html_markup_markdown(text)
|
48
|
+
provider = markup_class(:markdown)
|
49
|
+
if provider.to_s == 'RedcarpetCompat'
|
50
|
+
redcarpet_exts = YARD::Redcarpet::Ext.redcarpet_exts
|
51
|
+
provider.new(text, *redcarpet_exts).to_html
|
52
|
+
else
|
53
|
+
html_markup_markdown_noredcarpet(text)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
install
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'yard/redcarpet/ext/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "yard-redcarpet-ext"
|
8
|
+
spec.version = YARD::Redcarpet::Ext::VERSION.dup
|
9
|
+
spec.authors = ["Akzhan Abdulin"]
|
10
|
+
spec.email = ["akzhan.abdulin@gmail.com"]
|
11
|
+
spec.description = %q{Redcarpet extensions for YARD}
|
12
|
+
spec.summary = %q{Enable Redcarpet extensions for YARD projects}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
spec.has_rdoc = 'yard'
|
21
|
+
|
22
|
+
spec.add_runtime_dependency "yard", "~> 0.8.0"
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: yard-redcarpet-ext
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Akzhan Abdulin
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-09-27 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: yard
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.8.0
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.8.0
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: bundler
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '1.3'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.3'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rake
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description: Redcarpet extensions for YARD
|
63
|
+
email:
|
64
|
+
- akzhan.abdulin@gmail.com
|
65
|
+
executables: []
|
66
|
+
extensions: []
|
67
|
+
extra_rdoc_files: []
|
68
|
+
files:
|
69
|
+
- .gitignore
|
70
|
+
- Gemfile
|
71
|
+
- LICENSE
|
72
|
+
- README.md
|
73
|
+
- Rakefile
|
74
|
+
- lib/yard-redcarpet-ext.rb
|
75
|
+
- lib/yard/redcarpet/ext.rb
|
76
|
+
- lib/yard/redcarpet/ext/version.rb
|
77
|
+
- yard-redcarpet-ext.gemspec
|
78
|
+
homepage: ''
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
segments:
|
92
|
+
- 0
|
93
|
+
hash: 2659873418656328463
|
94
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
96
|
+
requirements:
|
97
|
+
- - ! '>='
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
segments:
|
101
|
+
- 0
|
102
|
+
hash: 2659873418656328463
|
103
|
+
requirements: []
|
104
|
+
rubyforge_project:
|
105
|
+
rubygems_version: 1.8.24
|
106
|
+
signing_key:
|
107
|
+
specification_version: 3
|
108
|
+
summary: Enable Redcarpet extensions for YARD projects
|
109
|
+
test_files: []
|
110
|
+
has_rdoc: yard
|