mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00

Modular code is gem based and we have been using fog-brightbox as a prototype for a while now as a proof of concept. Management of numerous gems within the code base did not look like it could scale particularly well for fog.
17 lines
436 B
Text
17 lines
436 B
Text
source "https://rubygems.org"
|
|
|
|
# Embedded provider gems
|
|
gem "fog-brightbox", :github => "brightbox/fog"
|
|
|
|
# Shared components
|
|
gem "fog-core", :github => "fog/fog-core"
|
|
gem "fog-json", :github => "fog/fog-json"
|
|
|
|
group :development, :test do
|
|
# This is here because gemspec doesn"t support require: false
|
|
gem "coveralls", :require => false
|
|
gem "netrc", :require => false
|
|
gem "octokit", :require => false
|
|
end
|
|
|
|
gemspec :path => "../"
|