diff options
| author | Zack Hobson | 2013-11-20 09:45:55 -0800 | 
|---|---|---|
| committer | Zack Hobson | 2013-11-20 09:45:55 -0800 | 
| commit | c4e99fd196a8134ec7885bcb227ab2829e46d7c3 (patch) | |
| tree | ca4566c8c5f54829990dde0cf2236ef96576b2df | |
| parent | a2a4fae3640141ab779ec25e5bcba0f6f8f777a3 (diff) | |
| download | hcl-c4e99fd196a8134ec7885bcb227ab2829e46d7c3.tar.bz2 | |
use yard for documentation
| -rw-r--r-- | .document | 1 | ||||
| -rw-r--r-- | README.markdown | 2 | ||||
| -rw-r--r-- | Rakefile | 5 | ||||
| -rw-r--r-- | hcl.gemspec | 1 | 
4 files changed, 7 insertions, 2 deletions
| diff --git a/.document b/.document deleted file mode 100644 index 2a525aa..0000000 --- a/.document +++ /dev/null @@ -1 +0,0 @@ ---files CHANGELOG diff --git a/README.markdown b/README.markdown index b4394d1..bede4f3 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,4 @@ -# HCl +# Harvest Command Line  HCl is a command-line tool for interacting with Harvest time sheets using the  [Harvest time tracking API][htt]. @@ -12,3 +12,8 @@ task :install do    system "gem install hcl-#{HCl::VERSION}.gem"  end +require 'yard' +YARD::Rake::YardocTask.new do |t| +  t.options = %w[--files CHANGELOG] +end + diff --git a/hcl.gemspec b/hcl.gemspec index 5596e21..ea0610d 100644 --- a/hcl.gemspec +++ b/hcl.gemspec @@ -20,5 +20,6 @@ Gem::Specification.new do |s|    s.add_runtime_dependency 'highline'    s.add_development_dependency 'shoulda'    s.add_development_dependency 'mocha' +  s.add_development_dependency 'yard'  end | 
