-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename project to FogTracker. Strip out Billing code and ActiveRecord
- Loading branch information
Showing
24 changed files
with
150 additions
and
413 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
source "http://rubygems.org" | ||
|
||
# Specify your gem's dependencies in cloud_cost_tracker.gemspec | ||
# Specify your gem's dependencies in fog_tracker.gemspec | ||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# -*- encoding: utf-8 -*- | ||
$:.push File.expand_path("../lib", __FILE__) | ||
require "fog_tracker/version" | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "fog_tracker" | ||
s.version = FogTracker::VERSION | ||
s.authors = ["Benton Roberts"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "http://github.com/benton/fog_tracker" | ||
s.summary = %q{Tracks the state of cloud computing resources across }+ | ||
%q{multiple accounts with multiple service providers} | ||
s.description = %q{This gem peridically polls mutiple cloud computing }+ | ||
%q{services using the fog gem, asynchronously updating the }+ | ||
%q{state of the resulting collections of Fog Resources.} | ||
|
||
s.rubyforge_project = "fog_tracker" | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ["lib"] | ||
|
||
# Runtime dependencies | ||
s.add_dependency "fog" | ||
|
||
# Development / Test dependencies | ||
s.add_development_dependency "rake" | ||
s.add_development_dependency "rspec" | ||
s.add_development_dependency "rdoc" | ||
end |
Oops, something went wrong.