manager 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHART.html +71 -67
- data/MANUAL.html +64 -60
- data/index.html +1252 -0
- data/manager.gemspec +3 -3
- data/spec/documentation +16 -2
- metadata +4 -3
data/manager.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
Gem::Specification.new do
|
2
2
|
|s|
|
3
3
|
s.name = "manager"
|
4
|
-
s.version = "0.1.
|
5
|
-
s.date = "2016-04-
|
4
|
+
s.version = "0.1.1"
|
5
|
+
s.date = "2016-04-05"
|
6
6
|
s.authors = ["sawa"]
|
7
7
|
s.email = []
|
8
8
|
s.license = "MIT"
|
9
9
|
s.summary = "Documentation and test framework for software written in Ruby"
|
10
10
|
s.description = "Manager generates a user's manual and a developer's chart simultaneously from a single spec file that contains both kinds of information. More precisely, it is a document generator, source code annotation extracter, source code analyzer, class diagram generator, unit test framework, benchmark measurer for alternative implementations of a feature, all in one."
|
11
|
-
s.homepage = "http://
|
11
|
+
s.homepage = "http://www.rubymanager.com/"
|
12
12
|
s.executables << "manager"
|
13
13
|
s.files = Dir["*"] - Dir["*.gem"] + Dir["lib/**/*"] + Dir["theme/**/*"] + Dir["examples/**/*"] + Dir["spec/**/*"]
|
14
14
|
s.platform = Gem::Platform::RUBY
|
data/spec/documentation
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: false
|
2
2
|
|
3
3
|
spec "=License",
|
4
4
|
"The MIT License (MIT)",
|
@@ -163,10 +163,24 @@ spec "==Simple Example",
|
|
163
163
|
"For more examples, please see the spec files of the following gems: manager, dom, pretty_debug, compact_time, and the spec files under the directory `manager/examples`.",
|
164
164
|
coda
|
165
165
|
|
166
|
+
spec "==Download",
|
167
|
+
"To install Manager, type the following:",
|
168
|
+
<<~'BASH'.code(:bash),
|
169
|
+
$ sudo gem install manager
|
170
|
+
BASH
|
171
|
+
"To access the source, goto: {https://github.com/sawa/manager}",
|
172
|
+
"Your contribution is welcome. Especially, the followings are wanted:",
|
173
|
+
"* A professional quality theme for Manager (Cf. {=Theme (theme, theme-list)})",
|
174
|
+
"* Opinions on structured setup for tests.",
|
175
|
+
"If you are willing to make a contribution, please post an issue on {https://github.com/sawa/manager}. However, not all posts are accepted. It is up to the desicion of the author.",
|
176
|
+
coda
|
177
|
+
|
166
178
|
spec "==Release Notes",
|
167
179
|
"Manager follows semantic versioning, i.e., the first number section of a version (major) corresponds to backwards incompatible API changes, the second number (minor) describes backwards compatible API changes, such as new functionality/features, and the third number (teeny) describes implementation level detail changes, such as small bug fixes.",
|
168
|
-
"* 0.
|
180
|
+
"* 0.1.0",
|
169
181
|
"** Initial release.",
|
182
|
+
"* 0.1.1",
|
183
|
+
"** Changed homepage, etc.",
|
170
184
|
coda
|
171
185
|
|
172
186
|
spec "=Viewing The Files",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sawa
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: benchmark-ips
|
@@ -83,6 +83,7 @@ files:
|
|
83
83
|
- examples/array/CHART.html
|
84
84
|
- examples/array/MANUAL.html
|
85
85
|
- examples/array/spec
|
86
|
+
- index.html
|
86
87
|
- lib/manager.rb
|
87
88
|
- lib/manager/annotation
|
88
89
|
- lib/manager/input
|
@@ -144,7 +145,7 @@ files:
|
|
144
145
|
- spec/without_expr.png
|
145
146
|
- theme/2016a.css
|
146
147
|
- theme/coderay_github.css
|
147
|
-
homepage: http://
|
148
|
+
homepage: http://www.rubymanager.com/
|
148
149
|
licenses:
|
149
150
|
- MIT
|
150
151
|
metadata: {}
|