nuri 0.5.1 → 0.5.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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nuri
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Herry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-04 00:00:00.000000000 Z
11
+ date: 2013-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sfplanner
@@ -100,7 +100,7 @@ files:
100
100
  - bin/install_module
101
101
  - bin/nuri
102
102
  - bin/nuri.old
103
- - bin/push_model
103
+ - bin/sfw2graph
104
104
  - examples/.gitignore
105
105
  - examples/bonfire.sfp
106
106
  - examples/bonfire/epcc.sfp
@@ -156,12 +156,14 @@ files:
156
156
  - examples/bonfire/old3/wordpress-test.sfp
157
157
  - examples/bonfire/old3/wp-test-2.sfp
158
158
  - examples/bonfire/test.sfp
159
- - examples/generator.rb
159
+ - examples/hadoop1.sfp
160
160
  - examples/hadoop2.sfp
161
161
  - examples/hpcloud.sfp
162
- - examples/run.rb
162
+ - examples/mockcloud/generator.rb
163
+ - examples/mockcloud/run.rb
163
164
  - examples/test.inc
164
165
  - examples/test.sfp
166
+ - examples/wordpress.sfp
165
167
  - lib/naas/d3.js
166
168
  - lib/naas/d3.v3.min.js
167
169
  - lib/naas/index.css
@@ -174,10 +176,11 @@ files:
174
176
  - lib/nuri/choreographer.rb
175
177
  - lib/nuri/constraint_helper.rb
176
178
  - lib/nuri/directory.rb
179
+ - lib/nuri/helper.rb
177
180
  - lib/nuri/master.rb
178
- - lib/nuri/net_helper.rb
179
181
  - lib/nuri/orchestrator.rb
180
182
  - lib/nuri/server.rb
183
+ - lib/nuri/targz.rb
181
184
  - modules/.gitignore
182
185
  - modules/apache/apache.rb
183
186
  - modules/apache/apache.rb.old
@@ -1,16 +0,0 @@
1
- #!/bin/bash
2
-
3
- if [[ "$1" == "" ]] || [[ "$2" == "" ]]; then
4
- echo "Usage: $ push_model <address> <model-file>"
5
- exit 0
6
- fi
7
-
8
- MODEL_FILE="/tmp/model.json"
9
-
10
- sfp $2 > $MODEL_FILE
11
-
12
- curl -i -X PUT $1:1314/model -F model=@"$MODEL_FILE"
13
-
14
- if [[ -f "$MODEL_FILE" ]]; then
15
- rm -f $MODEL_FILE
16
- fi