brianjlandau-sdoc-helpers 0.1.2 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/LICENSE +20 -0
- data/brianjlandau-sdoc-helpers.gemspec +48 -0
- data/lib/sdoc_helpers/version.rb +1 -1
- data/sdoc-helpers.gemspec +25 -0
- metadata +22 -5
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2010 Chris Wanstrath
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
Software), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,48 @@
|
|
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{brianjlandau-sdoc-helpers}
|
8
|
+
s.version = "0.1.4"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Chris Wanstrath", "Brian Landau"]
|
12
|
+
s.date = %q{2010-06-28}
|
13
|
+
s.description = %q{Simple helpers to make using sdoc easier.}
|
14
|
+
s.email = %q{chris@ozmm.org}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.md"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".gitignore",
|
21
|
+
"LICENSE",
|
22
|
+
"README.md",
|
23
|
+
"Rakefile",
|
24
|
+
"brianjlandau-sdoc-helpers.gemspec",
|
25
|
+
"lib/rake/sdoctask.rb",
|
26
|
+
"lib/sdoc_helpers.rb",
|
27
|
+
"lib/sdoc_helpers/markdown.rb",
|
28
|
+
"lib/sdoc_helpers/pages.rb",
|
29
|
+
"lib/sdoc_helpers/version.rb",
|
30
|
+
"sdoc-helpers.gemspec"
|
31
|
+
]
|
32
|
+
s.homepage = %q{http://github.com/brianjlandau/sdoc-helpers}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.7}
|
36
|
+
s.summary = %q{Simple helpers to make using sdoc easier.}
|
37
|
+
|
38
|
+
if s.respond_to? :specification_version then
|
39
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
40
|
+
s.specification_version = 3
|
41
|
+
|
42
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
43
|
+
else
|
44
|
+
end
|
45
|
+
else
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
data/lib/sdoc_helpers/version.rb
CHANGED
@@ -0,0 +1,25 @@
|
|
1
|
+
$LOAD_PATH.unshift 'lib'
|
2
|
+
require 'sdoc_helpers/version'
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "sdoc-helpers"
|
6
|
+
s.version = SDocHelpers::Version.to_s
|
7
|
+
s.date = Time.now.strftime('%Y-%m-%d')
|
8
|
+
s.summary = "Helpers to make using sdoc easier."
|
9
|
+
s.homepage = "http://github.com/defunkt/sdoc-helpers"
|
10
|
+
s.email = "chris@ozmm.org"
|
11
|
+
s.authors = [ "Chris Wanstrath" ]
|
12
|
+
s.has_rdoc = false
|
13
|
+
|
14
|
+
s.files = %w( README.md Rakefile LICENSE )
|
15
|
+
s.files += Dir.glob("lib/**/*")
|
16
|
+
s.files += Dir.glob("bin/**/*")
|
17
|
+
s.files += Dir.glob("man/**/*")
|
18
|
+
s.files += Dir.glob("test/**/*")
|
19
|
+
|
20
|
+
s.add_dependency 'sdoc', '~> 0.2'
|
21
|
+
s.description = <<desc
|
22
|
+
Makes publishing docs with sdoc slightly more pleasant by adding
|
23
|
+
support for README.markdown and other small tweaks.
|
24
|
+
desc
|
25
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brianjlandau-sdoc-helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 19
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 4
|
10
|
+
version: 0.1.4
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Chris Wanstrath
|
@@ -10,7 +16,7 @@ autorequire:
|
|
10
16
|
bindir: bin
|
11
17
|
cert_chain: []
|
12
18
|
|
13
|
-
date: 2010-
|
19
|
+
date: 2010-06-28 00:00:00 -04:00
|
14
20
|
default_executable:
|
15
21
|
dependencies: []
|
16
22
|
|
@@ -21,15 +27,20 @@ executables: []
|
|
21
27
|
extensions: []
|
22
28
|
|
23
29
|
extra_rdoc_files:
|
30
|
+
- LICENSE
|
24
31
|
- README.md
|
25
32
|
files:
|
33
|
+
- .gitignore
|
34
|
+
- LICENSE
|
26
35
|
- README.md
|
27
36
|
- Rakefile
|
37
|
+
- brianjlandau-sdoc-helpers.gemspec
|
28
38
|
- lib/rake/sdoctask.rb
|
29
39
|
- lib/sdoc_helpers.rb
|
30
40
|
- lib/sdoc_helpers/markdown.rb
|
31
41
|
- lib/sdoc_helpers/pages.rb
|
32
42
|
- lib/sdoc_helpers/version.rb
|
43
|
+
- sdoc-helpers.gemspec
|
33
44
|
has_rdoc: true
|
34
45
|
homepage: http://github.com/brianjlandau/sdoc-helpers
|
35
46
|
licenses: []
|
@@ -40,21 +51,27 @@ rdoc_options:
|
|
40
51
|
require_paths:
|
41
52
|
- lib
|
42
53
|
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
43
55
|
requirements:
|
44
56
|
- - ">="
|
45
57
|
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
46
61
|
version: "0"
|
47
|
-
version:
|
48
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
49
64
|
requirements:
|
50
65
|
- - ">="
|
51
66
|
- !ruby/object:Gem::Version
|
67
|
+
hash: 3
|
68
|
+
segments:
|
69
|
+
- 0
|
52
70
|
version: "0"
|
53
|
-
version:
|
54
71
|
requirements: []
|
55
72
|
|
56
73
|
rubyforge_project:
|
57
|
-
rubygems_version: 1.3.
|
74
|
+
rubygems_version: 1.3.7
|
58
75
|
signing_key:
|
59
76
|
specification_version: 3
|
60
77
|
summary: Simple helpers to make using sdoc easier.
|