staugaard-cloudmaster 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 1
4
- :patch: 1
4
+ :patch: 2
data/bin/cloudmaster CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/ruby
2
- $:.unshift File.join(ENV['AWS_HOME'], "app")
2
+ $:.unshift File.expand_path('../app', File.dirname(__FILE__))
3
3
 
4
4
  require 'configuration'
5
5
  require 'aws_context'
data/lib/AWS/EC2.rb CHANGED
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "lib", "OriginalAWS"))
1
+ $:.unshift(File.expand_path('../OriginalAWS', File.dirname(__FILE__)))
2
2
  require 'OriginalAWS/EC2'
3
3
 
4
4
  module AWS
data/lib/AWS/S3.rb CHANGED
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "lib", "OriginalAWS"))
1
+ $:.unshift(File.expand_path('../OriginalAWS', File.dirname(__FILE__)))
2
2
  require 'OriginalAWS/S3'
3
3
 
4
4
  module AWS
data/lib/AWS/SQS.rb CHANGED
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "lib", "OriginalAWS"))
1
+ $:.unshift(File.expand_path('../OriginalAWS', File.dirname(__FILE__)))
2
2
  require 'OriginalAWS/SQS'
3
3
 
4
4
  module AWS
data/lib/AWS/SimpleDB.rb CHANGED
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "lib", "OriginalAWS"))
1
+ $:.unshift(File.expand_path('../OriginalAWS', File.dirname(__FILE__)))
2
2
  require 'OriginalAWS/SimpleDB'
3
3
 
4
4
  module AWS
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'stringio'
4
4
  require 'rexml/document'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'pp'
3
3
  require 'test/unit'
4
4
  require 'MockAWS/clock'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'logger_factory'
4
4
  require 'MockAWS/clock'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'MockAWS/clock'
4
4
  require 'logger_factory'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'MockAWS/clock'
4
4
  require 'logger_factory'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'MockAWS/clock'
4
4
  require 'logger_factory'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'MockAWS/clock'
4
4
  require 'logger_factory'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'MockAWS/clock'
4
4
  require 'logger_factory'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'MockAWS/clock'
4
4
  require 'logger_factory'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'MockAWS/clock'
4
4
  require 'logger_factory'
@@ -1,4 +1,4 @@
1
- $:.unshift(File.join(ENV['AWS_HOME'], "app"))
1
+ $:.unshift(File.expand_path('../app', File.dirname(__FILE__)))
2
2
  require 'test/unit'
3
3
  require 'MockAWS/clock'
4
4
  require 'logger_factory'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: staugaard-cloudmaster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - cchayden
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2009-04-15 00:00:00 -07:00
14
+ date: 2009-04-20 00:00:00 -07:00
15
15
  default_executable: cloudmaster
16
16
  dependencies: []
17
17