mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
bc421ae96c
Includes a simple test of Compute class.
28 lines
1.1 KiB
Ruby
28 lines
1.1 KiB
Ruby
# coding: utf-8
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'fog/brightbox/version'
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "fog-brightbox"
|
|
spec.version = Fog::Brightbox::VERSION
|
|
spec.authors = ["Paul Thornthwaite"]
|
|
spec.email = ["tokengeek@gmail.com"]
|
|
spec.description = %q{Module for the 'fog' gem to support Brightbox Cloud}
|
|
spec.summary = %q{This library can be used as a module for `fog` or as standalone provider
|
|
to use the Brightbox Cloud in applications}
|
|
spec.homepage = ""
|
|
spec.license = "MIT"
|
|
|
|
spec.files = `git ls-files`.split($/)
|
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
spec.require_paths = ["lib"]
|
|
|
|
spec.add_dependency "fog-core"
|
|
spec.add_dependency "fog-json"
|
|
|
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
spec.add_development_dependency "rake"
|
|
spec.add_development_dependency "minitest"
|
|
end
|