simsim 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION +1 -1
  3. data/bin/simsim +4 -4
  4. metadata +3 -3
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ begin
10
10
  gem.email = "priteau@gmail.com"
11
11
  gem.homepage = "http://github.com/priteau/simsim"
12
12
  gem.authors = ["Pierre Riteau"]
13
- gem.add_dependency "restfully"
13
+ gem.add_dependency("restfully", '>= 0.3.1')
14
14
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
15
  end
16
16
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/bin/simsim CHANGED
@@ -40,10 +40,10 @@ end
40
40
 
41
41
  @sites = Hash.new { |hash, key| hash[key] = Array.new }
42
42
 
43
- Restfully::Session.new(@base_uri, @options.merge('root_path' => @root_path)) do |grid, session|
44
- grid.sites.each do |site_name, site|
45
- site.clusters.each do |cluster_name, _|
46
- @sites[site_name].push(cluster_name)
43
+ Restfully::Session.new(@options.merge(:root_path => @root_path, :base_uri => @base_uri)) do |grid, session|
44
+ grid.sites.each do |site|
45
+ site.clusters.each do |cluster|
46
+ @sites[site.uid].push(cluster.uid)
47
47
  end
48
48
  end
49
49
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simsim
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
  - Pierre Riteau
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-07 00:00:00 +02:00
12
+ date: 2009-10-28 00:00:00 +01:00
13
13
  default_executable: simsim
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: "0"
23
+ version: 0.3.1
24
24
  version:
25
25
  description: simsim generates an ssh_config file allowing to easily connect from your workstation to all compute nodes in Grid'5000. Since it is based on an ERB template, the generated ssh_config can be customized at will.
26
26
  email: priteau@gmail.com