neptune 0.1.4 → 0.2.0
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/README +4 -0
- data/bin/neptune +7 -0
- data/doc/AppControllerClient.html +113 -22
- data/doc/{Kernel.html → AppControllerException.html} +23 -55
- data/doc/BabelHelper.html +707 -0
- data/doc/BadConfigurationException.html +142 -0
- data/doc/CommonFunctions.html +121 -33
- data/doc/FileNotFoundException.html +142 -0
- data/doc/NeptuneHelper.html +1102 -0
- data/doc/Object.html +94 -749
- data/doc/bin/neptune.html +3 -1
- data/doc/created.rid +7 -5
- data/doc/index.html +73 -25
- data/doc/lib/app_controller_client_rb.html +1 -1
- data/doc/lib/babel_rb.html +68 -0
- data/doc/lib/common_functions_rb.html +3 -1
- data/doc/lib/custom_exceptions_rb.html +54 -0
- data/doc/lib/neptune_rb.html +3 -1
- data/lib/app_controller_client.rb +28 -10
- data/lib/babel.rb +260 -0
- data/lib/common_functions.rb +42 -28
- data/lib/custom_exceptions.rb +10 -0
- data/lib/neptune.rb +371 -304
- data/test/unit/test_app_controller_client.rb +9 -9
- data/test/unit/test_babel.rb +154 -0
- data/test/unit/test_common_functions.rb +39 -75
- data/test/unit/test_neptune.rb +168 -76
- data/test/unit/ts_all.rb +5 -0
- metadata +32 -8
data/test/unit/ts_all.rb
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
# Programmer: Chris Bunch (cgb@cs.ucsb.edu)
|
2
2
|
|
3
|
+
require 'rubygems'
|
4
|
+
require 'flexmock'
|
5
|
+
require 'flexmock/test_unit'
|
6
|
+
|
3
7
|
$:.unshift File.join(File.dirname(__FILE__))
|
4
8
|
require 'test_app_controller_client'
|
9
|
+
require 'test_babel'
|
5
10
|
require 'test_common_functions'
|
6
11
|
require 'test_neptune'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neptune
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 2
|
9
|
+
- 0
|
10
|
+
version: 0.2.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Chris Bunch
|
@@ -15,10 +15,25 @@ autorequire: neptune
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2012-02-11 00:00:00 -08:00
|
19
19
|
default_executable: neptune
|
20
|
-
dependencies:
|
21
|
-
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: promise
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 19
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 3
|
33
|
+
- 0
|
34
|
+
version: 0.3.0
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
22
37
|
description: " Neptune is a domain specific language that lets you deploy high performance\n computing applications to supported cloud platforms. Jobs can be deployed in\n standard Ruby syntax.\n"
|
23
38
|
email: appscale_community@googlegroups.com
|
24
39
|
executables:
|
@@ -37,11 +52,17 @@ files:
|
|
37
52
|
- doc/js/quicksearch.js
|
38
53
|
- doc/js/thickbox-compressed.js
|
39
54
|
- doc/AppControllerClient.html
|
55
|
+
- doc/AppControllerException.html
|
56
|
+
- doc/NeptuneHelper.html
|
57
|
+
- doc/FileNotFoundException.html
|
40
58
|
- doc/lib/neptune_rb.html
|
59
|
+
- doc/lib/custom_exceptions_rb.html
|
41
60
|
- doc/lib/app_controller_client_rb.html
|
61
|
+
- doc/lib/babel_rb.html
|
42
62
|
- doc/lib/common_functions_rb.html
|
43
63
|
- doc/index.html
|
44
64
|
- doc/bin/neptune.html
|
65
|
+
- doc/BabelHelper.html
|
45
66
|
- doc/images/wrench.png
|
46
67
|
- doc/images/loadingAnimation.gif
|
47
68
|
- doc/images/find.png
|
@@ -63,9 +84,11 @@ files:
|
|
63
84
|
- doc/images/package.png
|
64
85
|
- doc/images/bullet_toggle_minus.png
|
65
86
|
- doc/created.rid
|
66
|
-
- doc/
|
87
|
+
- doc/BadConfigurationException.html
|
67
88
|
- lib/common_functions.rb
|
68
89
|
- lib/app_controller_client.rb
|
90
|
+
- lib/babel.rb
|
91
|
+
- lib/custom_exceptions.rb
|
69
92
|
- lib/neptune.rb
|
70
93
|
- test/integration/tc_c.rb
|
71
94
|
- test/integration/tc_dfsp.rb
|
@@ -79,6 +102,7 @@ files:
|
|
79
102
|
- test/integration/ts_neptune.rb
|
80
103
|
- test/integration/tc_mapreduce.rb
|
81
104
|
- test/unit/test_app_controller_client.rb
|
105
|
+
- test/unit/test_babel.rb
|
82
106
|
- test/unit/test_neptune.rb
|
83
107
|
- test/unit/test_common_functions.rb
|
84
108
|
- test/unit/ts_all.rb
|