[Brightbox] Extract to provider module

This commit is contained in:
Paul Thornthwaite 2014-02-19 21:33:59 +00:00
parent 76c470ffbb
commit 192c0c098b
146 changed files with 36 additions and 0 deletions

View File

@ -52,6 +52,9 @@ Gem::Specification.new do |s|
s.add_dependency('net-ssh', '>=2.1.3')
s.add_dependency('nokogiri', '>=1.5.11')
# Modular providers
s.add_dependency("fog-brightbox")
## List your development dependencies here. Development dependencies are
## those that are only needed during development
s.add_development_dependency('jekyll') unless RUBY_PLATFORM == 'java'

View File

@ -0,0 +1,28 @@
# 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 "shindo"
end

Some files were not shown because too many files have changed in this diff Show More