docbook_status 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/README.txt +1 -1
- data/Rakefile +1 -1
- data/version.txt +1 -1
- metadata +4 -5
- data/docbook_status.gemspec +0 -35
data/History.txt
CHANGED
data/README.txt
CHANGED
data/Rakefile
CHANGED
data/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docbook_status
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -14,7 +14,7 @@ default_executable:
|
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bones
|
17
|
-
requirement: &
|
17
|
+
requirement: &2166328320 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
version: 3.7.1
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2166328320
|
26
26
|
description: A utility for DocBook authors/publishers showing the document structure
|
27
27
|
(sections) and word count of a DocBook project. It is intended to provide an overview
|
28
28
|
of a DocBook project's structure and volume while you are writing or editing it.
|
@@ -42,7 +42,6 @@ files:
|
|
42
42
|
- README.txt
|
43
43
|
- Rakefile
|
44
44
|
- bin/docbook_status
|
45
|
-
- docbook_status.gemspec
|
46
45
|
- lib/docbook_status.rb
|
47
46
|
- spec/docbook_status_spec.rb
|
48
47
|
- spec/spec_helper.rb
|
@@ -51,7 +50,7 @@ files:
|
|
51
50
|
- test/test_docbook_status.rb
|
52
51
|
- version.txt
|
53
52
|
has_rdoc: true
|
54
|
-
homepage: http://projekte.
|
53
|
+
homepage: http://projekte.textmulch.de/docbook_status/
|
55
54
|
licenses: []
|
56
55
|
post_install_message:
|
57
56
|
rdoc_options:
|
data/docbook_status.gemspec
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
Gem::Specification.new do |s|
|
4
|
-
s.name = %q{docbook_status}
|
5
|
-
s.version = "0.1.0"
|
6
|
-
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
-
s.authors = ["Rainer Volz"]
|
9
|
-
s.date = %q{2011-09-08}
|
10
|
-
s.default_executable = %q{docbook_status}
|
11
|
-
s.description = %q{A utility for DocBook authors/publishers showing the document structure (sections) and word count of a DocBook project. It is intended to provide an overview of a DocBook project's structure and volume while you are writing or editing it.}
|
12
|
-
s.email = %q{dev@textmulch.de}
|
13
|
-
s.executables = ["docbook_status"]
|
14
|
-
s.extra_rdoc_files = ["History.txt", "README.txt", "bin/docbook_status"]
|
15
|
-
s.files = [".bnsignore", "Gemfile", "Gemfile.lock", "History.txt", "README.txt", "Rakefile", "bin/docbook_status", "lib/docbook_status.rb", "spec/docbook_status_spec.rb", "spec/spec_helper.rb", "test/fixtures/book.xml", "test/fixtures/chapter2.xml", "test/test_docbook_status.rb", "version.txt"]
|
16
|
-
s.homepage = %q{http://projekte.textmuch.de/docbook_status/}
|
17
|
-
s.rdoc_options = ["--main", "README.txt"]
|
18
|
-
s.require_paths = ["lib"]
|
19
|
-
s.rubyforge_project = %q{docbook_status}
|
20
|
-
s.rubygems_version = %q{1.6.2}
|
21
|
-
s.summary = %q{A utility for DocBook authors/publishers showing the document structure (sections) and word count of a DocBook project.}
|
22
|
-
s.test_files = ["test/test_docbook_status.rb"]
|
23
|
-
|
24
|
-
if s.respond_to? :specification_version then
|
25
|
-
s.specification_version = 3
|
26
|
-
|
27
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
28
|
-
s.add_development_dependency(%q<bones>, [">= 3.7.1"])
|
29
|
-
else
|
30
|
-
s.add_dependency(%q<bones>, [">= 3.7.1"])
|
31
|
-
end
|
32
|
-
else
|
33
|
-
s.add_dependency(%q<bones>, [">= 3.7.1"])
|
34
|
-
end
|
35
|
-
end
|