Skip to content

Commit 03d8d13

Browse files
committed
Switch to YARD.
1 parent f094da6 commit 03d8d13

10 files changed

+58
-70
lines changed

.document

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
spec/**/*.rb
2+
lib/**/*.rb
3+
-
4+
README.rdoc
5+
CHANGELOG.rdoc
6+
TODO.rdoc

.gitignore

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.DS_Store
2-
doc/*
3-
rdoc/*
4-
coverage/*
5-
spec/debug.log
6-
pkg/*
7-
dist
8-
Gemfile.lock
2+
/.yardoc/*
3+
/doc/*
4+
/coverage/*
5+
/spec/debug.log
6+
/pkg/*
7+
/dist
8+
/Gemfile.lock
99
*.gem
1010
/.idea/
1111
.rvmrc

.yardopts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--no-private

History.txt CHANGELOG.rdoc

+11-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@
66
* Recognize column+type, and don't change a file unless the column+type combination of the new schema are different than that of the old (i.e., don't regenerate if columns happen to be in a different order. That's just how life is sometimes.)
77
* Grab old specification even if it has \r\n as line endings rather than pure \ns
88
* Various warning and specification fixes
9-
* Fix "no such file to load -- annotate/annotate_models (MissingSourceFile)" error (require statements in tasks now use full path to lib files)
10-
* warn about macros, to mitigate when we're included during a production run, not just a rakefile run -- possibly at the expense of too much noise
9+
* Fix "no such file to load -- annotate/annotate_models (MissingSourceFile)"
10+
error (require statements in tasks now use full path to lib files)
11+
* warn about macros, to mitigate when we're included during a production run,
12+
not just a rakefile run -- possibly at the expense of too much noise
1113
* Adding rake as a runtime dependency
12-
* If the schema is already in the model file, it will be replaced into the same location. If it didn't previously exist, it'll be placed according to the "position", as before.
13-
* Allow task loading from Rakefile for gems (plugin installation already auto-detects).
14+
* If the schema is already in the model file, it will be replaced into the same
15+
location. If it didn't previously exist, it'll be placed according to the
16+
"position", as before.
17+
* Allow task loading from Rakefile for gems (plugin installation already
18+
auto-detects).
1419
* Add skip_on_db_migrate option as well for people that don't want it
1520
* Fix options parsing to convert strings to proper booleans
1621
* Add support for Fabrication fabricators
@@ -72,7 +77,8 @@
7277

7378
== 2.4.0 2009-12-13
7479

75-
* Incorporated lots of patches from the Github community, including support for Blueprints fixtures
80+
* Incorporated lots of patches from the Github community, including support for
81+
Blueprints fixtures
7682
* Several bug fixes
7783

7884
== 2.1 2009-10-18

Gemfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ group :development do
66
gem 'mg'
77
gem 'rspec'
88
gem 'wrong', '>=0.6.2'
9-
gem 'rdoc'
109
gem 'files', '>=0.2.1'
10+
platforms :ruby do
11+
gem 'yard', :require => false
12+
end
1113
end
1214

1315
gem 'activesupport', '>= 3.0.0', :require => nil

README.rdoc

+3-4
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,9 @@ annotation are consistent regardless of what order migrations are executed in, u
129129

130130
== WARNING
131131

132-
Note that this code will blow away the initial/final comment
133-
block in your models if it looks like it was previously added
134-
by annotate models, so you don't want to add additional text
135-
to an automatically created comment block.
132+
Note that this code will blow away the initial/final comment block in your
133+
models if it looks like it was previously added by this gem, so you don't want
134+
to add additional text to an automatically created comment block.
136135

137136
BACK UP YOUR MODELS BEFORE USING THIS TOOL!
138137

Rakefile

+13-26
Original file line numberDiff line numberDiff line change
@@ -19,38 +19,25 @@ require "#{here}/lib/annotate"
1919
# want other tests/tasks run by default? Add them to the list
2020
task :default => [:spec]
2121

22-
# mg ("minimalist gems") defines rake tasks:
23-
#
24-
# rake gem
25-
# Build gem into dist/
26-
#
27-
# rake gem:publish
28-
# Push the gem to RubyGems.org
29-
#
30-
# rake gem:install
31-
# Build and install as local gem
32-
#
33-
# rake package
34-
# Build gem and tarball into dist/
35-
begin
36-
require 'mg'
37-
rescue LoadError
38-
abort "Please `gem install mg`"
39-
end
22+
require 'mg'
4023
MG.new("annotate.gemspec")
4124

42-
task :default => :spec
43-
4425
require "rspec/core/rake_task" # RSpec 2.0
4526
RSpec::Core::RakeTask.new(:spec) do |t|
4627
t.pattern = ['spec/*_spec.rb', 'spec/**/*_spec.rb']
4728
t.rspec_opts = ['--backtrace', '--format d']
4829
end
4930

50-
require 'rdoc/task'
51-
RDoc::Task.new do |rdoc|
52-
rdoc.rdoc_dir = 'rdoc'
53-
rdoc.title = "annotated_models #{Annotate.version}"
54-
rdoc.rdoc_files.include('README*')
55-
rdoc.rdoc_files.include('lib/**/*.rb')
31+
require 'yard'
32+
YARD::Rake::YardocTask.new do |t|
33+
# t.files = ['features/**/*.feature', 'features/**/*.rb', 'lib/**/*.rb']
34+
# t.options = ['--any', '--extra', '--opts'] # optional
35+
end
36+
37+
namespace :yard do
38+
task :clobber do
39+
FileUtils.rm_f(".yardoc")
40+
FileUtils.rm_f("doc")
41+
end
5642
end
43+
task :clobber => :'yard:clobber'

TODO.rdoc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
== TODO
2+
3+
- clean up history
4+
- change default position back to "top" for all annotations
5+
- add "top" and "bottom" as synonyms for "before" and "after"
6+
- change 'exclude' to 'only' (double negatives are not unconfusing)
7+
8+
== TODO (proposed)
9+
10+
- push two identical gems, named 'annotate' and 'annotate_models'
11+
- supply two binaries, named 'annotate' and 'annotate_models', since there's already a unix tool named 'annotate'
12+
- test EVERYTHING

annotate.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Gem::Specification.new do |s|
1010
1111

1212
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
13-
s.extra_rdoc_files = ["README.rdoc"]
13+
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "TODO.rdoc"]
1414

15-
s.files = %w( README.rdoc History.txt )
15+
s.files = %w( README.rdoc CHANGELOG.rdoc TODO.rdoc )
1616
s.files += Dir.glob("lib/**/*")
1717
s.files += Dir.glob("tasks/**/*")
1818
s.files += ["bin/annotate"] # todo: annotate_models

todo.txt

-25
This file was deleted.

0 commit comments

Comments
 (0)