detroit-dnote 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.ruby +32 -0
- data/COPYING.rdoc +23 -0
- data/GPL3.txt +674 -0
- data/README.rdoc +34 -0
- data/lib/detroit-dnote.rb +201 -0
- data/man/detroit-dnote.5 +122 -0
- data/man/detroit-dnote.5.html +166 -0
- data/man/detroit-dnote.5.ronn +85 -0
- metadata +79 -0
data/.ruby
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
---
|
2
|
+
authors:
|
3
|
+
- name: T.Sawyer
|
4
|
+
email: transfire@gmail.com
|
5
|
+
copyrights:
|
6
|
+
- holder: Thomas Sawyer, Rubyworks
|
7
|
+
year: '2011'
|
8
|
+
license: GPL3
|
9
|
+
replacements: []
|
10
|
+
conflicts: []
|
11
|
+
requirements:
|
12
|
+
- name: dnote
|
13
|
+
- name: detroit
|
14
|
+
dependencies: []
|
15
|
+
repositories: []
|
16
|
+
resources:
|
17
|
+
home: http://detroit.github.com
|
18
|
+
code: http://github.com/detroit/detroit-dnote
|
19
|
+
mail: http://groups.google.com/group/rubyworks-mailinglist
|
20
|
+
load_path:
|
21
|
+
- lib
|
22
|
+
extra: {}
|
23
|
+
revision: 0
|
24
|
+
name: detroit-dnote
|
25
|
+
source: []
|
26
|
+
alternatives: []
|
27
|
+
title: Detroit DNote
|
28
|
+
version: 0.1.0
|
29
|
+
summary: DNote plugin for Detroit
|
30
|
+
description: DNote plugin for Detroit build system. Extract devleoper's notes from
|
31
|
+
source in documentation phase.
|
32
|
+
date: '2011-10-15'
|
data/COPYING.rdoc
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
= COPYRIGHT NOTICES
|
2
|
+
|
3
|
+
== Detroit DNote
|
4
|
+
|
5
|
+
Copyright:: (c) 2011 Thomas Sawyer, Rubyworks
|
6
|
+
License:: GPL-3
|
7
|
+
Website:: http://detroit.github.com
|
8
|
+
|
9
|
+
Copyright (c) 2011 Thomas Sawyer
|
10
|
+
|
11
|
+
This program is free software: you can redistribute it and/or modify
|
12
|
+
it under the terms of the GNU General Public License as published by
|
13
|
+
the Free Software Foundation, either version 3 of the License, or
|
14
|
+
(at your option) any later version.
|
15
|
+
|
16
|
+
This program is distributed in the hope that it will be useful,
|
17
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
18
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
19
|
+
GNU General Public License for more details.
|
20
|
+
|
21
|
+
You should have received a copy of the GNU General Public License
|
22
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
23
|
+
|