doc 0.0.0.0

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.
Files changed (8) hide show
  1. data/.tmignore +1 -0
  2. data/LICENSE.txt +20 -0
  3. data/README.markdown +7 -0
  4. data/Rakefile +18 -0
  5. data/VERSION +1 -0
  6. data/doc.gemspec +49 -0
  7. data/lib/doc.rb +0 -0
  8. metadata +104 -0
data/.tmignore ADDED
@@ -0,0 +1 @@
1
+ /*.gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Ivan Kuchin
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.
data/README.markdown ADDED
@@ -0,0 +1,7 @@
1
+ # doc
2
+
3
+ Successor of sdoc_all.
4
+
5
+ ## Copyright
6
+
7
+ Copyright (c) 2010 Ivan Kuchin. See LICENSE.txt for details.
data/Rakefile ADDED
@@ -0,0 +1,18 @@
1
+ require 'rake'
2
+ require 'jeweler'
3
+ require 'rake/gem_ghost_task'
4
+
5
+ name = 'doc'
6
+
7
+ Jeweler::Tasks.new do |gem|
8
+ gem.name = name
9
+ gem.summary = %Q{Documentation for everything}
10
+ gem.description = %Q{Command line tool to get searchable documentation for ruby, rails, gems, plugins and other ruby related code in one place}
11
+ gem.homepage = "http://github.com/toy/#{name}"
12
+ gem.license = 'MIT'
13
+ gem.authors = ['Ivan Kuchin']
14
+ gem.add_development_dependency 'jeweler', '~> 1.5.1'
15
+ gem.add_development_dependency 'rake-gem-ghost'
16
+ end
17
+ Jeweler::RubygemsDotOrgTasks.new
18
+ Rake::GemGhostTask.new
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0.0
data/doc.gemspec ADDED
@@ -0,0 +1,49 @@
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{doc}
8
+ s.version = "0.0.0.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Ivan Kuchin"]
12
+ s.date = %q{2010-12-16}
13
+ s.description = %q{Command line tool to get searchable documentation for ruby, rails, gems, plugins and other ruby related code in one place}
14
+ s.extra_rdoc_files = [
15
+ "LICENSE.txt",
16
+ "README.markdown"
17
+ ]
18
+ s.files = [
19
+ ".tmignore",
20
+ "LICENSE.txt",
21
+ "README.markdown",
22
+ "Rakefile",
23
+ "VERSION",
24
+ "doc.gemspec",
25
+ "lib/doc.rb"
26
+ ]
27
+ s.homepage = %q{http://github.com/toy/doc}
28
+ s.licenses = ["MIT"]
29
+ s.require_paths = ["lib"]
30
+ s.rubygems_version = %q{1.3.7}
31
+ s.summary = %q{Documentation for everything}
32
+
33
+ if s.respond_to? :specification_version then
34
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
35
+ s.specification_version = 3
36
+
37
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
38
+ s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
39
+ s.add_development_dependency(%q<rake-gem-ghost>, [">= 0"])
40
+ else
41
+ s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
42
+ s.add_dependency(%q<rake-gem-ghost>, [">= 0"])
43
+ end
44
+ else
45
+ s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
46
+ s.add_dependency(%q<rake-gem-ghost>, [">= 0"])
47
+ end
48
+ end
49
+
data/lib/doc.rb ADDED
File without changes
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: doc
3
+ version: !ruby/object:Gem::Version
4
+ hash: 79
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 0
10
+ - 0
11
+ version: 0.0.0.0
12
+ platform: ruby
13
+ authors:
14
+ - Ivan Kuchin
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-12-16 00:00:00 +03:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: jeweler
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ hash: 1
31
+ segments:
32
+ - 1
33
+ - 5
34
+ - 1
35
+ version: 1.5.1
36
+ type: :development
37
+ version_requirements: *id001
38
+ - !ruby/object:Gem::Dependency
39
+ name: rake-gem-ghost
40
+ prerelease: false
41
+ requirement: &id002 !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ hash: 3
47
+ segments:
48
+ - 0
49
+ version: "0"
50
+ type: :development
51
+ version_requirements: *id002
52
+ description: Command line tool to get searchable documentation for ruby, rails, gems, plugins and other ruby related code in one place
53
+ email:
54
+ executables: []
55
+
56
+ extensions: []
57
+
58
+ extra_rdoc_files:
59
+ - LICENSE.txt
60
+ - README.markdown
61
+ files:
62
+ - .tmignore
63
+ - LICENSE.txt
64
+ - README.markdown
65
+ - Rakefile
66
+ - VERSION
67
+ - doc.gemspec
68
+ - lib/doc.rb
69
+ has_rdoc: true
70
+ homepage: http://github.com/toy/doc
71
+ licenses:
72
+ - MIT
73
+ post_install_message:
74
+ rdoc_options: []
75
+
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ none: false
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ hash: 3
84
+ segments:
85
+ - 0
86
+ version: "0"
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ hash: 3
93
+ segments:
94
+ - 0
95
+ version: "0"
96
+ requirements: []
97
+
98
+ rubyforge_project:
99
+ rubygems_version: 1.3.7
100
+ signing_key:
101
+ specification_version: 3
102
+ summary: Documentation for everything
103
+ test_files: []
104
+