Skip to content

Commit

Permalink
fix requires
Browse files Browse the repository at this point in the history
  • Loading branch information
geemus committed Jun 3, 2010
1 parent 7fc2a7f commit 9955643
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/fog/bluebox.rb
@@ -1,11 +1,11 @@
module Fog
module Bluebox
require 'fog/bluebox/models/images'
require 'fog/bluebox/requests/get_images'
require 'fog/bluebox/requests/get_templates'
require 'fog/bluebox/models/flavors'
require 'fog/bluebox/requests/get_flavors'
require 'fog/bluebox/requests/get_products'
require 'fog/bluebox/models/flavor'
require 'fog/bluebox/requests/get_flavor'
require 'fog/bluebox/requests/get_product'
require 'fog/bluebox/models/servers'
require 'fog/bluebox/requests/get_blocks'
require 'fog/bluebox/models/server'
Expand Down
2 changes: 1 addition & 1 deletion lib/fog/bluebox/models/flavors.rb
Expand Up @@ -21,7 +21,7 @@ class Flavors < Fog::Collection
model Fog::Bluebox::Flavor

def all
data = connection.get_product.body['products']
data = connection.get_products.body['products']
load(data)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/fog/bluebox/requests/get_product.rb
Expand Up @@ -2,7 +2,7 @@ module Fog
module Bluebox
class Real

require 'fog/bluebox/parsers/get_flavor'
require 'fog/bluebox/parsers/get_product'

# Get details of a product
#
Expand Down

0 comments on commit 9955643

Please sign in to comment.