hugo 0.1.0 → 0.1.1

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.
Files changed (6) hide show
  1. data/Rakefile +4 -0
  2. data/VERSION +1 -1
  3. data/hugo.gemspec +96 -0
  4. data/lib/hugo.rb +2 -2
  5. data/pkg/hugo-0.1.0.gem +0 -0
  6. metadata +34 -3
data/Rakefile CHANGED
@@ -4,6 +4,10 @@ require 'rake'
4
4
  begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gemspec|
7
+ gemspec.add_dependency('amazon-ec2')
8
+ gemspec.add_dependency('net-ssh')
9
+ gemspec.add_dependency('json')
10
+
7
11
  gemspec.name = "hugo"
8
12
  gemspec.summary = "Deploy Your Rack Apps to Cloud"
9
13
  gemspec.description = "A easy to understand DSL that makes it dirt simple to deploy to the cloud."
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/hugo.gemspec ADDED
@@ -0,0 +1,96 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{hugo}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Tom Wilson", "Barrett Little"]
12
+ s.date = %q{2010-01-27}
13
+ s.description = %q{A easy to understand DSL that makes it dirt simple to deploy to the cloud.}
14
+ s.email = %q{tom@jackhq.com}
15
+ s.executables = ["autospec", "ec2-gem-example.rb", "ec2-gem-profile.rb", "ec2sh", "edit_json.rb", "prettify_json.rb", "setup.rb", "spec"]
16
+ s.files = [
17
+ ".DS_Store",
18
+ ".gitignore",
19
+ "Gemfile",
20
+ "Rakefile",
21
+ "VERSION",
22
+ "bin/autospec",
23
+ "bin/ec2-gem-example.rb",
24
+ "bin/ec2-gem-profile.rb",
25
+ "bin/ec2sh",
26
+ "bin/setup.rb",
27
+ "bin/spec",
28
+ "config/hugo.yml.example",
29
+ "example/myhugo.rb",
30
+ "hugo.gemspec",
31
+ "lib/.DS_Store",
32
+ "lib/hugo.old",
33
+ "lib/hugo.rb",
34
+ "lib/hugo/.DS_Store",
35
+ "lib/hugo/app.rb",
36
+ "lib/hugo/aws/ec2.rb",
37
+ "lib/hugo/aws/elb.rb",
38
+ "lib/hugo/aws/rds.rb",
39
+ "lib/hugo/balancer.rb",
40
+ "lib/hugo/cloud.rb",
41
+ "lib/hugo/database.rb",
42
+ "lib/hugo/mixin/params_validate.rb",
43
+ "pkg/hugo-0.1.0.gem",
44
+ "readme.md",
45
+ "spec/.DS_Store",
46
+ "spec/lib/hugo/app_spec.rb",
47
+ "spec/lib/hugo/aws/ec2_spec.rb",
48
+ "spec/lib/hugo/aws/elb_spec.rb",
49
+ "spec/lib/hugo/aws/rds_spec.rb",
50
+ "spec/lib/hugo/balancer_spec.rb",
51
+ "spec/lib/hugo/database_spec.rb",
52
+ "spec/lib/hugo_spec.rb",
53
+ "spec/spec.opts",
54
+ "spec/spec_helper.rb",
55
+ "vendor/gems/cache/amazon-ec2-0.7.9.gem",
56
+ "vendor/gems/cache/json-1.2.0.gem",
57
+ "vendor/gems/cache/net-ssh-2.0.17.gem",
58
+ "vendor/gems/cache/rspec-1.2.9.gem",
59
+ "vendor/gems/cache/xml-simple-1.0.12.gem"
60
+ ]
61
+ s.homepage = %q{http://github.com/twilson63/hugo}
62
+ s.rdoc_options = ["--charset=UTF-8"]
63
+ s.require_paths = ["lib"]
64
+ s.rubygems_version = %q{1.3.5}
65
+ s.summary = %q{Deploy Your Rack Apps to Cloud}
66
+ s.test_files = [
67
+ "spec/lib/hugo/app_spec.rb",
68
+ "spec/lib/hugo/aws/ec2_spec.rb",
69
+ "spec/lib/hugo/aws/elb_spec.rb",
70
+ "spec/lib/hugo/aws/rds_spec.rb",
71
+ "spec/lib/hugo/balancer_spec.rb",
72
+ "spec/lib/hugo/database_spec.rb",
73
+ "spec/lib/hugo_spec.rb",
74
+ "spec/spec_helper.rb"
75
+ ]
76
+
77
+ if s.respond_to? :specification_version then
78
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
79
+ s.specification_version = 3
80
+
81
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
82
+ s.add_runtime_dependency(%q<amazon-ec2>, [">= 0"])
83
+ s.add_runtime_dependency(%q<net-ssh>, [">= 0"])
84
+ s.add_runtime_dependency(%q<json>, [">= 0"])
85
+ else
86
+ s.add_dependency(%q<amazon-ec2>, [">= 0"])
87
+ s.add_dependency(%q<net-ssh>, [">= 0"])
88
+ s.add_dependency(%q<json>, [">= 0"])
89
+ end
90
+ else
91
+ s.add_dependency(%q<amazon-ec2>, [">= 0"])
92
+ s.add_dependency(%q<net-ssh>, [">= 0"])
93
+ s.add_dependency(%q<json>, [">= 0"])
94
+ end
95
+ end
96
+
data/lib/hugo.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  # This makes sure the bundled gems are in our $LOAD_PATH
2
- require File.expand_path(File.join(File.dirname(__FILE__) + "/..", 'vendor', 'gems', 'environment'))
2
+ #require File.expand_path(File.join(File.dirname(__FILE__) + "/..", 'vendor', 'gems', 'environment'))
3
3
 
4
4
  # This actually requires the bundled gems
5
- Bundler.require_env
5
+ #Bundler.require_env
6
6
 
7
7
  require 'AWS'
8
8
  require 'net/ssh'
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hugo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Wilson
@@ -12,8 +12,37 @@ cert_chain: []
12
12
 
13
13
  date: 2010-01-27 00:00:00 -05:00
14
14
  default_executable:
15
- dependencies: []
16
-
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: amazon-ec2
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0"
25
+ version:
26
+ - !ruby/object:Gem::Dependency
27
+ name: net-ssh
28
+ type: :runtime
29
+ version_requirement:
30
+ version_requirements: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: "0"
35
+ version:
36
+ - !ruby/object:Gem::Dependency
37
+ name: json
38
+ type: :runtime
39
+ version_requirement:
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: "0"
45
+ version:
17
46
  description: A easy to understand DSL that makes it dirt simple to deploy to the cloud.
18
47
  email: tom@jackhq.com
19
48
  executables:
@@ -43,6 +72,7 @@ files:
43
72
  - bin/spec
44
73
  - config/hugo.yml.example
45
74
  - example/myhugo.rb
75
+ - hugo.gemspec
46
76
  - lib/.DS_Store
47
77
  - lib/hugo.old
48
78
  - lib/hugo.rb
@@ -55,6 +85,7 @@ files:
55
85
  - lib/hugo/cloud.rb
56
86
  - lib/hugo/database.rb
57
87
  - lib/hugo/mixin/params_validate.rb
88
+ - pkg/hugo-0.1.0.gem
58
89
  - readme.md
59
90
  - spec/.DS_Store
60
91
  - spec/lib/hugo/app_spec.rb