nephele 0.1.11 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/Gemfile +1 -1
  2. data/VERSION +1 -1
  3. data/bin/neph +2 -2
  4. data/bin/nephele +2 -2
  5. data/nephele.gemspec +5 -5
  6. metadata +7 -6
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source :rubygems
2
2
 
3
3
  gem 'rake'
4
- gem 'cloudservers', :tag => 'v0.4.0'
4
+ gem 'cloudservers', '~>0.4'
5
5
  gem 'awesome_print'
6
6
  gem 'optitron'
7
7
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.11
1
+ 0.1.12
data/bin/neph CHANGED
@@ -13,7 +13,7 @@ end
13
13
  #require 'ap'
14
14
 
15
15
  class Nephele::Runner < Optitron::CLI
16
- JODELL_CHEF_BOOTSTRAPPER = 'https://github.com/jodell/cookbooks/raw/master/bin/bootstrap.sh'
16
+ JODELL_CHEF_BOOTSTRAPPER = 'https://raw.github.com/jodell/cookbooks/master/bin/bootstrap.sh'
17
17
  class_opt 'cookbooks', 'optional cookbooks URI', :type => :string
18
18
  class_opt 'personality', 'comma-separated tuple of contents,targetfile to be placed at startup', :type => :string
19
19
  class_opt 'bootstrap', "optional bootstrapper URI, defaults to #{JODELL_CHEF_BOOTSTRAPPER}", :type => :string
@@ -89,7 +89,7 @@ class Nephele::Runner < Optitron::CLI
89
89
  puts "Bootstrapping: #{name}..."
90
90
  create name, image, flavor
91
91
  bootstrap = params['bootstrap'] || JODELL_CHEF_BOOTSTRAPPER
92
- node_run "curl #{bootstrap} > boot && chmod +x boot && ./boot #{params['cookbooks'] || ''}"
92
+ node_run "curl -L #{bootstrap} > boot && chmod +x boot && ./boot #{params['cookbooks'] || ''}"
93
93
  # This is inaccurate. Prestrapping is just for changing chef-solo's verbosity.
94
94
  #
95
95
  recipe_cmd = [
data/bin/nephele CHANGED
@@ -13,7 +13,7 @@ end
13
13
  #require 'ap'
14
14
 
15
15
  class Nephele::Runner < Optitron::CLI
16
- JODELL_CHEF_BOOTSTRAPPER = 'https://github.com/jodell/cookbooks/raw/master/bin/bootstrap.sh'
16
+ JODELL_CHEF_BOOTSTRAPPER = 'https://raw.github.com/jodell/cookbooks/master/bin/bootstrap.sh'
17
17
  class_opt 'cookbooks', 'optional cookbooks URI', :type => :string
18
18
  class_opt 'personality', 'comma-separated tuple of contents,targetfile to be placed at startup', :type => :string
19
19
  class_opt 'bootstrap', "optional bootstrapper URI, defaults to #{JODELL_CHEF_BOOTSTRAPPER}", :type => :string
@@ -89,7 +89,7 @@ class Nephele::Runner < Optitron::CLI
89
89
  puts "Bootstrapping: #{name}..."
90
90
  create name, image, flavor
91
91
  bootstrap = params['bootstrap'] || JODELL_CHEF_BOOTSTRAPPER
92
- node_run "curl #{bootstrap} > boot && chmod +x boot && ./boot #{params['cookbooks'] || ''}"
92
+ node_run "curl -L #{bootstrap} > boot && chmod +x boot && ./boot #{params['cookbooks'] || ''}"
93
93
  # This is inaccurate. Prestrapping is just for changing chef-solo's verbosity.
94
94
  #
95
95
  recipe_cmd = [
data/nephele.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{nephele}
8
- s.version = "0.1.11"
8
+ s.version = "0.1.12"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jeffrey O'Dell"]
12
- s.date = %q{2011-05-16}
12
+ s.date = %q{2011-06-27}
13
13
  s.description = %q{Light administration utility for popular cloud services}
14
14
  s.email = %q{jeffrey.odell@gmail.com}
15
15
  s.executables = ["neph", "nephele"]
@@ -50,7 +50,7 @@ Gem::Specification.new do |s|
50
50
 
51
51
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
52
52
  s.add_runtime_dependency(%q<rake>, [">= 0"])
53
- s.add_runtime_dependency(%q<cloudservers>, [">= 0"])
53
+ s.add_runtime_dependency(%q<cloudservers>, ["~> 0.4"])
54
54
  s.add_runtime_dependency(%q<awesome_print>, [">= 0"])
55
55
  s.add_runtime_dependency(%q<optitron>, [">= 0"])
56
56
  s.add_development_dependency(%q<wirble>, [">= 0"])
@@ -63,7 +63,7 @@ Gem::Specification.new do |s|
63
63
  s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
64
64
  else
65
65
  s.add_dependency(%q<rake>, [">= 0"])
66
- s.add_dependency(%q<cloudservers>, [">= 0"])
66
+ s.add_dependency(%q<cloudservers>, ["~> 0.4"])
67
67
  s.add_dependency(%q<awesome_print>, [">= 0"])
68
68
  s.add_dependency(%q<optitron>, [">= 0"])
69
69
  s.add_dependency(%q<wirble>, [">= 0"])
@@ -77,7 +77,7 @@ Gem::Specification.new do |s|
77
77
  end
78
78
  else
79
79
  s.add_dependency(%q<rake>, [">= 0"])
80
- s.add_dependency(%q<cloudservers>, [">= 0"])
80
+ s.add_dependency(%q<cloudservers>, ["~> 0.4"])
81
81
  s.add_dependency(%q<awesome_print>, [">= 0"])
82
82
  s.add_dependency(%q<optitron>, [">= 0"])
83
83
  s.add_dependency(%q<wirble>, [">= 0"])
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nephele
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 11
10
- version: 0.1.11
9
+ - 12
10
+ version: 0.1.12
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeffrey O'Dell
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-05-16 00:00:00 -05:00
18
+ date: 2011-06-27 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -36,12 +36,13 @@ dependencies:
36
36
  version_requirements: &id002 !ruby/object:Gem::Requirement
37
37
  none: false
38
38
  requirements:
39
- - - ">="
39
+ - - ~>
40
40
  - !ruby/object:Gem::Version
41
41
  hash: 3
42
42
  segments:
43
43
  - 0
44
- version: "0"
44
+ - 4
45
+ version: "0.4"
45
46
  prerelease: false
46
47
  type: :runtime
47
48
  requirement: *id002