Skip to content

Commit

Permalink
Merge pull request fog#2700 from brightbox/brightbox_module
Browse files Browse the repository at this point in the history
[Brightbox] Extract to provider module [fogGH-2674]
  • Loading branch information
tokengeek committed Feb 27, 2014
2 parents 7a152a2 + 192c0c0 commit c445f45
Show file tree
Hide file tree
Showing 146 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fog.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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('minitest')
Expand Down
28 changes: 28 additions & 0 deletions providers/brightbox/fog-brightbox.gemspec
Original file line number Diff line number Diff line change
@@ -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 = ["[email protected]"]
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions providers/brightbox/lib/fog/brightbox/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Fog
module Brightbox
VERSION = "0.0.1"
end
end

0 comments on commit c445f45

Please sign in to comment.