detroit-dnote 0.2.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e0f6a229d5ad2ee58de17161414158877dfd048a
4
+ data.tar.gz: fa22557dee6e91b27e7ed1e6ef87e9a93304d22d
5
+ SHA512:
6
+ metadata.gz: 7ed5692523e80fa79c125cbed643a29a571700b3f34779a5fb219926ffac2771b770cd736f43d676ee468bb42ea34e36d8d0ae6156b60823e72692ef3eb0b3ab
7
+ data.tar.gz: ac37b7af79f5f20438d4d801d06bcc90ded2c06f69e8faa2e0da9c57dc6061f88a3c97f5e959d4c5ba1f0c57b387f4fb807db8fe184dfa194aebcca1ee191c0e
data/.index ADDED
@@ -0,0 +1,46 @@
1
+ ---
2
+ revision: 2013
3
+ type: ruby
4
+ sources:
5
+ - var
6
+ authors:
7
+ - name: T.Sawyer
8
+ email: transfire@gmail.com
9
+ organizations:
10
+ - name: Rubyworks
11
+ requirements:
12
+ - version: 0.4+
13
+ name: detroit
14
+ - name: detroit-standard
15
+ - name: dnote
16
+ conflicts: []
17
+ alternatives: []
18
+ resources:
19
+ - type: home
20
+ uri: http://detroit.github.com
21
+ label: Homepage
22
+ - type: code
23
+ uri: http://github.com/detroit/detroit-dnote
24
+ label: Source Code
25
+ - type: mail
26
+ uri: http://groups.google.com/group/rubyworks-mailinglist
27
+ label: Mailing List
28
+ repositories: []
29
+ categories: []
30
+ copyrights:
31
+ - holder: Rubyworks
32
+ year: '2011'
33
+ license: GPL-3.0
34
+ customs: []
35
+ paths:
36
+ lib:
37
+ - lib
38
+ name: detroit-dnote
39
+ title: Detroit DNote
40
+ summary: DNote plugin for Detroit
41
+ created: '2011-10-16'
42
+ description: DNote plugin for Detroit build system. Extract devleoper's notes from
43
+ source in documentation phase.
44
+ suite: detroit
45
+ version: 0.4.0
46
+ date: '2014-01-13'
@@ -1,11 +1,15 @@
1
- = Detroit DNote Tool
1
+ # Detroit DNote Tool
2
2
 
3
- {Website}[http://rubyworks.github.com/detroit-dnote] /
4
- {Report Issue}[http://github.com/rubyworks/detroit-dnote/issues] /
5
- {Repository}[http://github.com/rubyworks/detroit-dnote]
3
+ [Website](http://rubyworks.github.com/detroit-dnote) /
4
+ [Report Issue](http://github.com/rubyworks/detroit-dnote/issues) /
5
+ [Development](http://github.com/rubyworks/detroit-dnote)
6
6
 
7
+ [![Build Status](https://secure.travis-ci.org/rubyworks/detroit-dnote.png)](http://travis-ci.org/rubyworks/detroit-dnote)
8
+ [![Gem Version](https://badge.fury.io/rb/detroit-dnote.png)](http://badge.fury.io/rb/detroit-dnote)    
9
+ [![Flattr Me](http://api.flattr.com/button/flattr-badge-large.png)](http://flattr.com/thing/324911/Rubyworks-Ruby-Development-Fund)
7
10
 
8
- == Description
11
+
12
+ ## About
9
13
 
10
14
  The Developer's Notes tool goes through you source files
11
15
  and compiles a list of any labeled comments. Labels are
@@ -20,14 +24,16 @@ XML, Markdown and RDoc's simple markup format.
20
24
  See http://rubyworks.github.com/dnote for more information.
21
25
 
22
26
 
23
- == Installation
27
+ ## Installation
24
28
 
25
- Per the usual gem install process:
29
+ ### Using RubyGems
26
30
 
27
31
  $ gem install detroit-dnote
28
32
 
29
33
 
30
- == Copyrights
34
+ ## Copyrights
35
+
36
+ Detroit DNote
31
37
 
32
38
  Copyright (c) 2011 Rubyworks
33
39
 
@@ -41,6 +47,5 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
41
47
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
42
48
  GNU General Public License for more details.
43
49
 
44
- You should have received a copy of the GNU General Public License
45
- along with this program. If not, see <http://www.gnu.org/licenses/>.
50
+ See LICENSE.txt file for full details.
46
51
 
@@ -0,0 +1,6 @@
1
+ # Detroit DNote
2
+
3
+ For the moment we are just going to make sure it loads okay.
4
+
5
+ require 'detroit-dnote'
6
+
@@ -1,8 +1,8 @@
1
- module Detroit
2
-
3
- require 'detroit/tool'
1
+ require 'detroit-standard'
4
2
 
5
- # The Developmer's Notes tool goes through source files
3
+ module Detroit
4
+ ##
5
+ # The Developer Notes tool goes through source files
6
6
  # and compiles a list of any labeled comments. Labels are
7
7
  # all-caps single word prefixes to a comment ending in a
8
8
  # colon and space.
@@ -11,23 +11,35 @@ module Detroit
11
11
  #
12
12
  class DNote < Tool
13
13
 
14
- # not that this is not necessary, but ...
15
- # def self.available?(project)
16
- # begin
17
- # require 'dnote'
18
- # require 'dnote/format'
19
- # true
20
- # rescue LoadError
21
- # false
22
- # end
23
- #end
24
-
14
+ # Works with the Standard assembly.
15
+ #
16
+ # @!parse
17
+ # include Standard
25
18
  #
26
- DEFAULT_FILES = "**/*.rb"
19
+ assembly Standard
20
+
21
+ # Location of manpage for this tool.
22
+ MANPAGE = File.dirname(__FILE__) + '/../man/detroit-dnote.5'
23
+
24
+ # Default glob of files to look in for notes. Presently defaults
25
+ # all Ruby and C scripts (i.e. `*.rb` and `*.c` files).
26
+ DEFAULT_FILES = "**/*.{rb,c}"
27
27
 
28
28
  # Default note labels to looked for in source code.
29
29
  DEFAULT_LABELS = ['TODO', 'FIXME', 'OPTIMIZE', 'DEPRECATE']
30
30
 
31
+ # Load requirements and set attribute defaults.
32
+ #
33
+ # @return [void]
34
+ def prerequisite
35
+ require 'dnote'
36
+ require 'dnote/format'
37
+
38
+ @files = DEFAULT_FILES
39
+ @output = project.log + 'dnotes.html'
40
+ @labels = nil #DEFAULT_LABELS
41
+ end
42
+
31
43
  # Specific labels to document.
32
44
  attr_accessor :labels
33
45
 
@@ -49,21 +61,22 @@ module Detroit
49
61
  # Output is either a file name with a clear extension to infer type
50
62
  # or a list of such file names, or a hash mapping file name to type.
51
63
  #
52
- # output: NOTES.rdoc
64
+ # @example
65
+ # output: NOTES.md
53
66
  #
67
+ # @example
54
68
  # output:
55
- # - NOTES.rdoc
69
+ # - NOTES.md
56
70
  # - site/notes.html
57
71
  #
72
+ # @example
58
73
  # output:
59
74
  # NOTES: markdown
60
75
  # site/notes.html: html
61
76
  #
62
- # Recognized formats include `xml`, `html` and `rdoc` among others.
77
+ # Recognized formats include `xml`, `html`, `md` and `rdoc` among others.
63
78
  attr_accessor :output
64
79
 
65
- # S E R V I C E M E T H O D S
66
-
67
80
  # Check the output file and see if they are older than
68
81
  # the input files.
69
82
  #
@@ -76,13 +89,16 @@ module Detroit
76
89
  end
77
90
 
78
91
  # Generate notes documents.
92
+ #
93
+ # @return [void]
79
94
  def document
80
95
  session = dnote_session
81
96
 
82
97
  output_mapping.each do |file, format|
83
98
  #next unless verify_format(format)
84
99
 
85
- mkdir_p(File.dirname(file))
100
+ dir = File.dirname(file)
101
+ mkdir_p(dir) unless File.directory?(dir)
86
102
 
87
103
  session.output = file
88
104
  session.format = format
@@ -93,6 +109,8 @@ module Detroit
93
109
  end
94
110
 
95
111
  # Reset output files, marking them as out-of-date.
112
+ #
113
+ # @return [void]
96
114
  def reset
97
115
  output.each do |file, format|
98
116
  if File.exist?(file)
@@ -103,6 +121,8 @@ module Detroit
103
121
  end
104
122
 
105
123
  # Remove output files.
124
+ #
125
+ # @return [void]
106
126
  def purge
107
127
  output.each do |file, format|
108
128
  if File.exist?(file)
@@ -112,33 +132,21 @@ module Detroit
112
132
  end
113
133
  end
114
134
 
115
- # A S S E M B L Y M E T H O D S
116
-
117
135
  #
118
136
  def assemble?(station, options={})
119
- case station
120
- when :document then true
121
- when :reset then true
122
- when :purge then true
123
- end
124
- end
125
-
126
- #
127
- def assemble(station, options={})
128
- case station
129
- when :document then document
130
- when :reset then reset
131
- when :purge then purge
132
- end
137
+ return true if station == :document
138
+ return true if station == :reset
139
+ return true if station == :purge
140
+ return false
133
141
  end
134
142
 
135
143
  private
136
144
 
137
- # TODO: apply_naming_policy ?
138
-
139
- #
140
145
  # Convert output into a hash of `file => format`.
141
146
  #
147
+ # @todo Should we use #apply_naming_policy ?
148
+ #
149
+ # @return [Hash]
142
150
  def output_mapping
143
151
  @output_mapping ||= (
144
152
  hash = {}
@@ -156,14 +164,20 @@ module Detroit
156
164
  )
157
165
  end
158
166
 
167
+ # The format of the file based on the extension.
168
+ # If the file has no extension then the value of
169
+ # `DEFAULT_FORMAT` is returned.
159
170
  #
171
+ # @return [String]
160
172
  def format(file)
161
173
  type = File.extname(file).sub('.','')
162
174
  type = DEFAULT_FORMAT if type.empty?
163
175
  type
164
176
  end
165
177
 
178
+ # DNote Session instance.
166
179
  #
180
+ # @return [DNote::Session]
167
181
  def dnote_session
168
182
  ::DNote::Session.new do |s|
169
183
  s.paths = files
@@ -176,25 +190,6 @@ module Detroit
176
190
  end
177
191
  end
178
192
 
179
- #
180
- def initialize_requires
181
- require 'dnote'
182
- require 'dnote/format'
183
- end
184
-
185
- #
186
- def initialize_defaults
187
- @files = DEFAULT_FILES
188
- @output = project.log + 'dnotes.html'
189
- @labels = nil #DEFAULT_LABELS
190
- end
191
-
192
- public
193
-
194
- def self.man_page
195
- File.dirname(__FILE__)+'/../man/detroit-dnote.5'
196
- end
197
-
198
193
  end
199
194
 
200
195
  end
@@ -1,16 +1,16 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "DETROIT\-DNOTE" "5" "October 2011" "" ""
4
+ .TH "DETROIT\-DNOTE" "5" "January 2014" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBdetroit\-dnote\fR \- extract developers notes from ruby source code
8
8
  .
9
9
  .SH "DESCRIPTION"
10
- The DNote plug\-in for Detroit utilize the DNote command line tool to extract notes from source code and construct nicely formated documentation out of it\.
10
+ The DNote plug\-in for Detroit utilizes the DNote command line tool to extract notes from source code and construct nicely formatted documentation out of it\.
11
11
  .
12
12
  .SH "OPTIONS"
13
- The following options can be used in the Detroit assembly file for defining a dnote service\.
13
+ The following options can be used in the Detroit toolchain file for defining a DNote tool instance\.
14
14
  .
15
15
  .IP "\(bu" 4
16
16
  \fBlabels\fR \- List of labels to document\. The default list includes \fBTODO\fR, \fBFIXME\fR, \fBOPTIMIZE\fR, and \fBDEPRECATE\fR\.
@@ -36,7 +36,7 @@ The following options can be used in the Detroit assembly file for defining a dn
36
36
  .IP "" 0
37
37
  .
38
38
  .SH "EXAMPLES"
39
- The simplist entry is
39
+ The simplest entry needs only an output file\.
40
40
  .
41
41
  .IP "" 4
42
42
  .
@@ -75,7 +75,7 @@ If the extension is atypical use a mapping\.
75
75
  dnote:
76
76
  output:
77
77
  NOTES: markdown
78
- site/notes\.html: html
78
+ site/notes\.htm: html
79
79
  .
80
80
  .fi
81
81
  .
@@ -89,7 +89,7 @@ A fuller example might look something like this\.
89
89
  .nf
90
90
 
91
91
  dnote:
92
- labels: [TODO, THINK, FIX]
92
+ labels: [TODO, THINK, FIX, OPTIMIZE]
93
93
  files: [lib, test]
94
94
  exclude:
95
95
  \- lib/foo/templates
@@ -113,10 +113,10 @@ Development Site \fIhttp://github\.com/detroit/detroit\-dnote\fR
113
113
  .IP "" 0
114
114
  .
115
115
  .SH "COPYRIGHT"
116
- Copyright (c) 2010 Thomas Sawyer, Rubyworks
116
+ Copyright (c) 2010 Rubyworks
117
117
  .
118
118
  .P
119
119
  Detroit DNote is distributable in accordance with the GPLv3 license\.
120
120
  .
121
121
  .SH "SEE ALSO"
122
- dnote(1)
122
+ detroit(1), dnote(1)
@@ -60,7 +60,7 @@
60
60
  <a href="#RESOURCES">RESOURCES</a>
61
61
  <a href="#COPYRIGHT">COPYRIGHT</a>
62
62
  <a href="#SEE-ALSO">SEE ALSO</a>
63
- </div>
63
+ </div>
64
64
 
65
65
  <ol class='man-decor man-head man head'>
66
66
  <li class='tl'>detroit-dnote(5)</li>
@@ -75,14 +75,14 @@
75
75
 
76
76
  <h2 id="DESCRIPTION">DESCRIPTION</h2>
77
77
 
78
- <p>The DNote plug-in for Detroit utilize the DNote command line tool
79
- to extract notes from source code and construct nicely formated
78
+ <p>The DNote plug-in for Detroit utilizes the DNote command line tool
79
+ to extract notes from source code and construct nicely formatted
80
80
  documentation out of it.</p>
81
81
 
82
82
  <h2 id="OPTIONS">OPTIONS</h2>
83
83
 
84
- <p>The following options can be used in the Detroit assembly file
85
- for defining a dnote service.</p>
84
+ <p>The following options can be used in the Detroit toolchain file
85
+ for defining a DNote tool instance.</p>
86
86
 
87
87
  <ul>
88
88
  <li><p><code>labels</code> - List of labels to document. The default list includes
@@ -100,7 +100,7 @@ Recognized extensions include <code>xml</code>, <code>html</code> and <code>rdoc
100
100
 
101
101
  <h2 id="EXAMPLES">EXAMPLES</h2>
102
102
 
103
- <p>The simplist entry is</p>
103
+ <p>The simplest entry needs only an output file.</p>
104
104
 
105
105
  <pre><code>dnote:
106
106
  output: NOTES.rdoc
@@ -119,13 +119,13 @@ Recognized extensions include <code>xml</code>, <code>html</code> and <code>rdoc
119
119
  <pre><code> dnote:
120
120
  output:
121
121
  NOTES: markdown
122
- site/notes.html: html
122
+ site/notes.htm: html
123
123
  </code></pre>
124
124
 
125
125
  <p>A fuller example might look something like this.</p>
126
126
 
127
127
  <pre><code> dnote:
128
- labels: [TODO, THINK, FIX]
128
+ labels: [TODO, THINK, FIX, OPTIMIZE]
129
129
  files: [lib, test]
130
130
  exclude:
131
131
  - lib/foo/templates
@@ -146,18 +146,18 @@ Recognized extensions include <code>xml</code>, <code>html</code> and <code>rdoc
146
146
 
147
147
  <h2 id="COPYRIGHT">COPYRIGHT</h2>
148
148
 
149
- <p>Copyright (c) 2010 Thomas Sawyer, Rubyworks</p>
149
+ <p>Copyright (c) 2010 Rubyworks</p>
150
150
 
151
151
  <p>Detroit DNote is distributable in accordance with the GPLv3 license.</p>
152
152
 
153
153
  <h2 id="SEE-ALSO">SEE ALSO</h2>
154
154
 
155
- <p><span class="man-ref">dnote<span class="s">(1)</span></span></p>
155
+ <p><span class="man-ref">detroit<span class="s">(1)</span></span>, <span class="man-ref">dnote<span class="s">(1)</span></span></p>
156
156
 
157
157
 
158
158
  <ol class='man-decor man-foot man foot'>
159
159
  <li class='tl'></li>
160
- <li class='tc'>October 2011</li>
160
+ <li class='tc'>January 2014</li>
161
161
  <li class='tr'>detroit-dnote(5)</li>
162
162
  </ol>
163
163
 
@@ -3,15 +3,15 @@ detroit-dnote(5) - extract developers notes from ruby source code
3
3
 
4
4
  ## DESCRIPTION
5
5
 
6
- The DNote plug-in for Detroit utilize the DNote command line tool
6
+ The DNote plug-in for Detroit utilizes the DNote command line tool
7
7
  to extract notes from source code and construct nicely formatted
8
8
  documentation out of it.
9
9
 
10
10
 
11
11
  ## OPTIONS
12
12
 
13
- The following options can be used in the Detroit assembly file
14
- for defining a DNote service.
13
+ The following options can be used in the Detroit toolchain file
14
+ for defining a DNote tool instance.
15
15
 
16
16
  * `labels` - List of labels to document. The default list includes
17
17
  `TODO`, `FIXME`, `OPTIMIZE`, and `DEPRECATE`.
@@ -33,7 +33,7 @@ for defining a DNote service.
33
33
 
34
34
  ## EXAMPLES
35
35
 
36
- The simplest entry is
36
+ The simplest entry needs only an output file.
37
37
 
38
38
  dnote:
39
39
  output: NOTES.rdoc
@@ -50,12 +50,12 @@ If the extension is atypical use a mapping.
50
50
  dnote:
51
51
  output:
52
52
  NOTES: markdown
53
- site/notes.html: html
53
+ site/notes.htm: html
54
54
 
55
55
  A fuller example might look something like this.
56
56
 
57
57
  dnote:
58
- labels: [TODO, THINK, FIX]
58
+ labels: [TODO, THINK, FIX, OPTIMIZE]
59
59
  files: [lib, test]
60
60
  exclude:
61
61
  - lib/foo/templates
@@ -75,7 +75,7 @@ For more information:
75
75
 
76
76
  ## COPYRIGHT
77
77
 
78
- Copyright (c) 2010 Thomas Sawyer, Rubyworks
78
+ Copyright (c) 2010 Rubyworks
79
79
 
80
80
  Detroit DNote is distributable in accordance with the GPLv3 license.
81
81
 
metadata CHANGED
@@ -1,38 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: detroit-dnote
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
5
- prerelease:
4
+ version: 0.4.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - T.Sawyer
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-04-02 00:00:00.000000000 Z
11
+ date: 2014-01-13 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: detroit
16
- requirement: &29283640 !ruby/object:Gem::Requirement
17
- none: false
15
+ requirement: !ruby/object:Gem::Requirement
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
- version: 0.3.0
19
+ version: '0.4'
22
20
  type: :runtime
23
21
  prerelease: false
24
- version_requirements: *29283640
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: detroit-standard
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
25
41
  - !ruby/object:Gem::Dependency
26
42
  name: dnote
27
- requirement: &29276460 !ruby/object:Gem::Requirement
28
- none: false
43
+ requirement: !ruby/object:Gem::Requirement
29
44
  requirements:
30
- - - ! '>='
45
+ - - '>='
31
46
  - !ruby/object:Gem::Version
32
47
  version: '0'
33
48
  type: :runtime
34
49
  prerelease: false
35
- version_requirements: *29276460
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
36
55
  description: DNote plugin for Detroit build system. Extract devleoper's notes from
37
56
  source in documentation phase.
38
57
  email:
@@ -41,40 +60,39 @@ executables: []
41
60
  extensions: []
42
61
  extra_rdoc_files:
43
62
  - LICENSE.txt
44
- - README.rdoc
45
- - NOTICE.rdoc
63
+ - README.md
46
64
  files:
47
- - .ruby
65
+ - .index
66
+ - demo/01_detroit_dnote.md
48
67
  - lib/detroit-dnote.rb
49
68
  - man/detroit-dnote.5
50
69
  - man/detroit-dnote.5.html
51
70
  - man/detroit-dnote.5.ronn
71
+ - README.md
52
72
  - LICENSE.txt
53
- - README.rdoc
54
- - NOTICE.rdoc
55
73
  homepage: http://detroit.github.com
56
74
  licenses:
57
- - GPL3
75
+ - GPL-3.0
76
+ metadata: {}
58
77
  post_install_message:
59
78
  rdoc_options: []
60
79
  require_paths:
61
80
  - lib
62
81
  required_ruby_version: !ruby/object:Gem::Requirement
63
- none: false
64
82
  requirements:
65
- - - ! '>='
83
+ - - '>='
66
84
  - !ruby/object:Gem::Version
67
85
  version: '0'
68
86
  required_rubygems_version: !ruby/object:Gem::Requirement
69
- none: false
70
87
  requirements:
71
- - - ! '>='
88
+ - - '>='
72
89
  - !ruby/object:Gem::Version
73
90
  version: '0'
74
91
  requirements: []
75
92
  rubyforge_project:
76
- rubygems_version: 1.8.11
93
+ rubygems_version: 2.0.3
77
94
  signing_key:
78
- specification_version: 3
95
+ specification_version: 4
79
96
  summary: DNote plugin for Detroit
80
97
  test_files: []
98
+ has_rdoc:
data/.ruby DELETED
@@ -1,36 +0,0 @@
1
- ---
2
- source:
3
- - meta
4
- authors:
5
- - name: T.Sawyer
6
- email: transfire@gmail.com
7
- copyrights:
8
- - holder: Thomas Sawyer, Rubyworks
9
- year: '2011'
10
- license: GPL3
11
- requirements:
12
- - name: detroit
13
- version: 0.3.0+
14
- - name: dnote
15
- dependencies: []
16
- alternatives: []
17
- conflicts: []
18
- repositories: []
19
- resources:
20
- home: http://detroit.github.com
21
- code: http://github.com/detroit/detroit-dnote
22
- mail: http://groups.google.com/group/rubyworks-mailinglist
23
- extra: {}
24
- load_path:
25
- - lib
26
- revision: 0
27
- created: '2011-10-16'
28
- summary: DNote plugin for Detroit
29
- title: Detroit DNote
30
- version: 0.2.0
31
- name: detroit-dnote
32
- suite: detroit
33
- description: DNote plugin for Detroit build system. Extract devleoper's notes from
34
- source in documentation phase.
35
- organization: rubyworks
36
- date: '2012-04-01'
@@ -1,21 +0,0 @@
1
- = COPYRIGHT NOTICES
2
-
3
- == Detroit DNote
4
-
5
- Copyright (c) 2011 Rubyworks
6
-
7
- This program is free software: you can redistribute it and/or modify
8
- it under the terms of the GNU General Public License as published by
9
- the Free Software Foundation, either version 3 of the License, or
10
- (at your option) any later version.
11
-
12
- This program is distributed in the hope that it will be useful,
13
- but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- GNU General Public License for more details.
16
-
17
- You should have received a copy of the GNU General Public License
18
- along with this program. If not, see <http://www.gnu.org/licenses/>.
19
-
20
- (http://detroit.github.com)
21
-