summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZack Hobson2009-10-23 12:28:37 -0700
committerZack Hobson2009-10-23 12:28:37 -0700
commit97a08d085bd2cf49948f7864734e3985874277ec (patch)
tree08192777613c122e75ab952bd22a46b1fc9d05d6
parent14544db56de5fb3ed412167d1fa7f557c5f69665 (diff)
downloadhcl-97a08d085bd2cf49948f7864734e3985874277ec.tar.bz2
Updated docs and Rake tasks for Gemcutter.
-rw-r--r--README.markdown7
-rw-r--r--Rakefile5
-rw-r--r--test/test_helper.rb1
3 files changed, 10 insertions, 3 deletions
diff --git a/README.markdown b/README.markdown
index 5c18d54..15fed6d 100644
--- a/README.markdown
+++ b/README.markdown
@@ -7,7 +7,9 @@ HCl is a command-line tool for interacting with Harvest time sheets using the
## Quick Start
- $ gem install zenhob-hcl --source=http://gems.github.com
+You can install hcl from Gemcutter:
+
+ $ gem install hcl
$ hcl show [date]
### Prerequisites
@@ -15,7 +17,8 @@ HCl is a command-line tool for interacting with Harvest time sheets using the
* Ruby (tested with 1.8.7)
* Ruby OpenSSL support (in debian/ubuntu: apt-get install libopenssl-ruby)
* Ruby extension building support (in debian/ubuntu: apt-get install ruby-dev)
- * RubyGems
+ * RubyGems 1.3.3
+ * Gemcutter (gem install gemcutter; gem tumble)
* Trollop option-parsing library (gem install trollop)
* Chronic date-parsing library (gem install chronic)
* HighLine console input library (gem install highline)
diff --git a/Rakefile b/Rakefile
index 5674830..2745796 100644
--- a/Rakefile
+++ b/Rakefile
@@ -18,7 +18,10 @@ begin
gem.add_dependency "trollop", ">= 1.10.2"
gem.add_dependency "chronic", ">= 0.2.3"
gem.add_dependency "highline", ">= 1.5.1"
+ gem.add_development_dependency "shoulda"
+ gem.add_development_dependency "mocha"
end
+ Jeweler::GemcutterTasks.new
rescue LoadError
- puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
+ puts "Jeweler not available. Install it with: sudo gem install jeweler"
end
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 633c821..fa69a86 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,5 +1,6 @@
$:.unshift(File.dirname(__FILE__) + '/../lib')
+require 'rubygems'
require 'test/unit'
require 'hcl/app'
require 'shoulda'