├── .gemspec ├── .gitignore ├── .reap ├── ignore ├── pack.reap ├── spec.reap └── test.reap ├── .ruby ├── .travis.yml ├── .yardopts ├── Assembly ├── COPYING.rdoc ├── Gemfile ├── HISTORY.rdoc ├── MANIFEST ├── README.rdoc ├── bin └── dnote ├── lib ├── dnote.rb ├── dnote.yml └── dnote │ ├── core_ext.rb │ ├── format.rb │ ├── note.rb │ ├── notes.rb │ ├── rake │ └── dnotetask.rb │ ├── session.rb │ ├── templates │ ├── html.erb │ ├── html │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ ├── json.erb │ ├── json │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ ├── md.erb │ ├── md │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ ├── rdoc.erb │ ├── rdoc │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ ├── soap.erb │ ├── soap │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ ├── text.erb │ ├── text │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ ├── xml.erb │ ├── xml │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ ├── xoxo.erb │ ├── xoxo │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ ├── yaml.erb │ └── yaml │ │ ├── file.erb │ │ ├── label.erb │ │ └── list.erb │ └── version.rb ├── test └── notes_case.rb ├── try ├── sample.bas ├── sample.js └── sample.rb ├── var ├── authors ├── copyrights ├── created ├── description ├── name ├── organization ├── repositories ├── requirements ├── resources ├── summary ├── title └── version └── work ├── command.rb └── site.rb /.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/.gemspec -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/.gitignore -------------------------------------------------------------------------------- /.reap/ignore: -------------------------------------------------------------------------------- 1 | ri 2 | work 3 | -------------------------------------------------------------------------------- /.reap/pack.reap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/.reap/pack.reap -------------------------------------------------------------------------------- /.reap/spec.reap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/.reap/spec.reap -------------------------------------------------------------------------------- /.reap/test.reap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/.reap/test.reap -------------------------------------------------------------------------------- /.ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/.ruby -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- 1 | --protected 2 | --private 3 | lib/**/*.rb 4 | - 5 | [A-Z]*.* 6 | -------------------------------------------------------------------------------- /Assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/Assembly -------------------------------------------------------------------------------- /COPYING.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/COPYING.rdoc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/HISTORY.rdoc -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/README.rdoc -------------------------------------------------------------------------------- /bin/dnote: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require "dnote" 3 | DNote::Session.main(*ARGV) 4 | 5 | -------------------------------------------------------------------------------- /lib/dnote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote.rb -------------------------------------------------------------------------------- /lib/dnote.yml: -------------------------------------------------------------------------------- 1 | ../.ruby -------------------------------------------------------------------------------- /lib/dnote/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/core_ext.rb -------------------------------------------------------------------------------- /lib/dnote/format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/format.rb -------------------------------------------------------------------------------- /lib/dnote/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/note.rb -------------------------------------------------------------------------------- /lib/dnote/notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/notes.rb -------------------------------------------------------------------------------- /lib/dnote/rake/dnotetask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/rake/dnotetask.rb -------------------------------------------------------------------------------- /lib/dnote/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/session.rb -------------------------------------------------------------------------------- /lib/dnote/templates/html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/html.erb -------------------------------------------------------------------------------- /lib/dnote/templates/html/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/html/file.erb -------------------------------------------------------------------------------- /lib/dnote/templates/html/label.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/html/label.erb -------------------------------------------------------------------------------- /lib/dnote/templates/html/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/html/list.erb -------------------------------------------------------------------------------- /lib/dnote/templates/json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/json.erb -------------------------------------------------------------------------------- /lib/dnote/templates/json/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/json/file.erb -------------------------------------------------------------------------------- /lib/dnote/templates/json/label.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/json/label.erb -------------------------------------------------------------------------------- /lib/dnote/templates/json/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/json/list.erb -------------------------------------------------------------------------------- /lib/dnote/templates/md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/md.erb -------------------------------------------------------------------------------- /lib/dnote/templates/md/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/md/file.erb -------------------------------------------------------------------------------- /lib/dnote/templates/md/label.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/md/label.erb -------------------------------------------------------------------------------- /lib/dnote/templates/md/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/md/list.erb -------------------------------------------------------------------------------- /lib/dnote/templates/rdoc.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/rdoc.erb -------------------------------------------------------------------------------- /lib/dnote/templates/rdoc/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/rdoc/file.erb -------------------------------------------------------------------------------- /lib/dnote/templates/rdoc/label.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/rdoc/label.erb -------------------------------------------------------------------------------- /lib/dnote/templates/rdoc/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/rdoc/list.erb -------------------------------------------------------------------------------- /lib/dnote/templates/soap.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/soap.erb -------------------------------------------------------------------------------- /lib/dnote/templates/soap/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/soap/file.erb -------------------------------------------------------------------------------- /lib/dnote/templates/soap/label.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/soap/label.erb -------------------------------------------------------------------------------- /lib/dnote/templates/soap/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/soap/list.erb -------------------------------------------------------------------------------- /lib/dnote/templates/text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/text.erb -------------------------------------------------------------------------------- /lib/dnote/templates/text/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/text/file.erb -------------------------------------------------------------------------------- /lib/dnote/templates/text/label.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/text/label.erb -------------------------------------------------------------------------------- /lib/dnote/templates/text/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/text/list.erb -------------------------------------------------------------------------------- /lib/dnote/templates/xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/xml.erb -------------------------------------------------------------------------------- /lib/dnote/templates/xml/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/xml/file.erb -------------------------------------------------------------------------------- /lib/dnote/templates/xml/label.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/xml/label.erb -------------------------------------------------------------------------------- /lib/dnote/templates/xml/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/xml/list.erb -------------------------------------------------------------------------------- /lib/dnote/templates/xoxo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/xoxo.erb -------------------------------------------------------------------------------- /lib/dnote/templates/xoxo/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/xoxo/file.erb -------------------------------------------------------------------------------- /lib/dnote/templates/xoxo/label.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/xoxo/label.erb -------------------------------------------------------------------------------- /lib/dnote/templates/xoxo/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/xoxo/list.erb -------------------------------------------------------------------------------- /lib/dnote/templates/yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/yaml.erb -------------------------------------------------------------------------------- /lib/dnote/templates/yaml/file.erb: -------------------------------------------------------------------------------- 1 | <%= require 'yaml'; notes.by_file.to_yaml %> 2 | -------------------------------------------------------------------------------- /lib/dnote/templates/yaml/label.erb: -------------------------------------------------------------------------------- 1 | <%= require 'yaml'; notes.by_label.to_yaml %> 2 | -------------------------------------------------------------------------------- /lib/dnote/templates/yaml/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/templates/yaml/list.erb -------------------------------------------------------------------------------- /lib/dnote/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/lib/dnote/version.rb -------------------------------------------------------------------------------- /test/notes_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/test/notes_case.rb -------------------------------------------------------------------------------- /try/sample.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/try/sample.bas -------------------------------------------------------------------------------- /try/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/try/sample.js -------------------------------------------------------------------------------- /try/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/try/sample.rb -------------------------------------------------------------------------------- /var/authors: -------------------------------------------------------------------------------- 1 | --- 2 | - Thomas Sawyer 3 | -------------------------------------------------------------------------------- /var/copyrights: -------------------------------------------------------------------------------- 1 | --- 2 | - (c) 2009 Thomas Sawyer, Rubyworks 3 | -------------------------------------------------------------------------------- /var/created: -------------------------------------------------------------------------------- 1 | 2009-10-09 -------------------------------------------------------------------------------- /var/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/var/description -------------------------------------------------------------------------------- /var/name: -------------------------------------------------------------------------------- 1 | dnote -------------------------------------------------------------------------------- /var/organization: -------------------------------------------------------------------------------- 1 | RubyWorks -------------------------------------------------------------------------------- /var/repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/var/repositories -------------------------------------------------------------------------------- /var/requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/var/requirements -------------------------------------------------------------------------------- /var/resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/var/resources -------------------------------------------------------------------------------- /var/summary: -------------------------------------------------------------------------------- 1 | Extract developer's notes from source code. 2 | -------------------------------------------------------------------------------- /var/title: -------------------------------------------------------------------------------- 1 | DNote -------------------------------------------------------------------------------- /var/version: -------------------------------------------------------------------------------- 1 | 1.7.0 2 | -------------------------------------------------------------------------------- /work/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/work/command.rb -------------------------------------------------------------------------------- /work/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyworks/dnote/HEAD/work/site.rb --------------------------------------------------------------------------------