From ea634082ddef873842a3b9b10af70709d1818bae Mon Sep 17 00:00:00 2001 From: Vladimir Rybas Date: Mon, 6 Feb 2012 22:51:11 +0700 Subject: [PATCH 1/2] Fix "private method `load' called for YAML:Module (NoMethodError)" --- lib/cloud-crowd.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cloud-crowd.rb b/lib/cloud-crowd.rb index 498fe87..c8ee03a 100644 --- a/lib/cloud-crowd.rb +++ b/lib/cloud-crowd.rb @@ -4,6 +4,7 @@ # Common Gems: require 'rubygems' +require 'yaml' gem 'activerecord', '~> 2.0' gem 'json' gem 'rest-client' From ce5d695b096d7a4d86fbad2aaa8ddc5da38b336b Mon Sep 17 00:00:00 2001 From: Vladimir Rybas Date: Sun, 12 Feb 2012 19:50:13 +0700 Subject: [PATCH 2/2] #32 Fix console starting up. Everything still works without 'tmpdir' but not producing uninitialized constant CloudCrowd::AssetStore (NameError) --- lib/cloud_crowd/asset_store.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/cloud_crowd/asset_store.rb b/lib/cloud_crowd/asset_store.rb index cee5150..cd4f3da 100644 --- a/lib/cloud_crowd/asset_store.rb +++ b/lib/cloud_crowd/asset_store.rb @@ -1,5 +1,3 @@ -require 'tmpdir' - module CloudCrowd # The AssetStore provides a common API for storing files and returning URLs @@ -40,4 +38,4 @@ def temp_storage_path end -end \ No newline at end of file +end