markd 0.1.0 → 0.1.1
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/VERSION +1 -1
- data/lib/markd.rb +0 -1
- data/markd.gemspec +93 -0
- metadata +3 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/markd.rb
CHANGED
data/markd.gemspec
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{markd}
|
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 = ["daisuke sugimori"]
|
12
|
+
s.date = %q{2011-08-25}
|
13
|
+
s.description = %q{markd is html report builder for markdown. markd makes well-formatted html with CSS and prittfied code by Google Code Prettify.}
|
14
|
+
s.email = %q{daixque@gmail.com}
|
15
|
+
s.executables = ["markd", "markd"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE.txt",
|
18
|
+
"README.md"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".document",
|
22
|
+
"Gemfile",
|
23
|
+
"LICENSE.txt",
|
24
|
+
"README.md",
|
25
|
+
"Rakefile",
|
26
|
+
"VERSION",
|
27
|
+
"bin/markd",
|
28
|
+
"lib/markd.rb",
|
29
|
+
"markd.gemspec",
|
30
|
+
"template/css/markd.css",
|
31
|
+
"template/google-code-prettify/lang-apollo.js",
|
32
|
+
"template/google-code-prettify/lang-clj.js",
|
33
|
+
"template/google-code-prettify/lang-css.js",
|
34
|
+
"template/google-code-prettify/lang-go.js",
|
35
|
+
"template/google-code-prettify/lang-hs.js",
|
36
|
+
"template/google-code-prettify/lang-lisp.js",
|
37
|
+
"template/google-code-prettify/lang-lua.js",
|
38
|
+
"template/google-code-prettify/lang-ml.js",
|
39
|
+
"template/google-code-prettify/lang-n.js",
|
40
|
+
"template/google-code-prettify/lang-proto.js",
|
41
|
+
"template/google-code-prettify/lang-scala.js",
|
42
|
+
"template/google-code-prettify/lang-sql.js",
|
43
|
+
"template/google-code-prettify/lang-tex.js",
|
44
|
+
"template/google-code-prettify/lang-vb.js",
|
45
|
+
"template/google-code-prettify/lang-vhdl.js",
|
46
|
+
"template/google-code-prettify/lang-wiki.js",
|
47
|
+
"template/google-code-prettify/lang-xq.js",
|
48
|
+
"template/google-code-prettify/lang-yaml.js",
|
49
|
+
"template/google-code-prettify/prettify.css",
|
50
|
+
"template/google-code-prettify/prettify.js",
|
51
|
+
"template/js/jquery.min.js",
|
52
|
+
"template/js/markd.js",
|
53
|
+
"template/template.html.erb",
|
54
|
+
"test/helper.rb",
|
55
|
+
"test/test_markd.rb"
|
56
|
+
]
|
57
|
+
s.homepage = %q{http://github.com/daixque/markd}
|
58
|
+
s.licenses = ["MIT"]
|
59
|
+
s.require_paths = ["lib"]
|
60
|
+
s.rubygems_version = %q{1.7.2}
|
61
|
+
s.summary = %q{html report builder for markdown}
|
62
|
+
|
63
|
+
if s.respond_to? :specification_version then
|
64
|
+
s.specification_version = 3
|
65
|
+
|
66
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
67
|
+
s.add_runtime_dependency(%q<erubis>, [">= 0"])
|
68
|
+
s.add_runtime_dependency(%q<bluecloth>, [">= 0"])
|
69
|
+
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
|
70
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
71
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
72
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
|
73
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
74
|
+
else
|
75
|
+
s.add_dependency(%q<erubis>, [">= 0"])
|
76
|
+
s.add_dependency(%q<bluecloth>, [">= 0"])
|
77
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
78
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
79
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
80
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
81
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
82
|
+
end
|
83
|
+
else
|
84
|
+
s.add_dependency(%q<erubis>, [">= 0"])
|
85
|
+
s.add_dependency(%q<bluecloth>, [">= 0"])
|
86
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
87
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
88
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
89
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
90
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: markd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- daisuke sugimori
|
@@ -108,6 +108,7 @@ files:
|
|
108
108
|
- VERSION
|
109
109
|
- bin/markd
|
110
110
|
- lib/markd.rb
|
111
|
+
- markd.gemspec
|
111
112
|
- template/css/markd.css
|
112
113
|
- template/google-code-prettify/lang-apollo.js
|
113
114
|
- template/google-code-prettify/lang-clj.js
|
@@ -147,7 +148,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
147
148
|
requirements:
|
148
149
|
- - ">="
|
149
150
|
- !ruby/object:Gem::Version
|
150
|
-
hash:
|
151
|
+
hash: 4126911401578411547
|
151
152
|
segments:
|
152
153
|
- 0
|
153
154
|
version: "0"
|