diff options
| author | Szabolcs Pap | 2013-11-30 01:35:34 -0500 | 
|---|---|---|
| committer | Szabolcs Pap | 2013-11-30 01:35:34 -0500 | 
| commit | 85d88a1abbd31492a83dd7b641cb4c5196388ac0 (patch) | |
| tree | c37a2b98b0426ab48474307c69025ae4d0591daf | |
| parent | a77834e04d5355f300c61e1e895d2bda83253c9c (diff) | |
| download | hcl-85d88a1abbd31492a83dd7b641cb4c5196388ac0.tar.bz2 | |
Fix uninitialized constant HCl::TimesheetResource::CGI (NameError)
| -rw-r--r-- | lib/hcl/timesheet_resource.rb | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/lib/hcl/timesheet_resource.rb b/lib/hcl/timesheet_resource.rb index 0eab7ed..1b2fefd 100644 --- a/lib/hcl/timesheet_resource.rb +++ b/lib/hcl/timesheet_resource.rb @@ -1,5 +1,6 @@  require 'net/http'  require 'net/https' +require 'cgi'  module HCl    class TimesheetResource | 
