pione 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. data/History.txt +9 -0
  2. data/Rakefile +13 -0
  3. data/bin/pione +5 -0
  4. data/bin/pione-compiler +5 -0
  5. data/example/ScoreAggregation/ScoreAggregation.pione +2 -0
  6. data/example/ScoreAggregation/bin/apply-template.rb +1 -1
  7. data/example/ScoreAggregation/bin/mean-summary.rb +1 -1
  8. data/example/ScoreAggregation/bin/total-mean.rb +1 -1
  9. data/example/ScoreAggregation/bin/total-statistics.rb +3 -3
  10. data/example/ScoreAggregation/pione-package.json +21 -0
  11. data/example/ScoreAggregation/scenario/case1/Scenario.pione +1 -0
  12. data/example/ScoreAggregation/scenario/case1/pione-scenario.json +36 -0
  13. data/lib/pione.rb +15 -2
  14. data/lib/pione/agent/basic-agent.rb +0 -1
  15. data/lib/pione/agent/job-terminator.rb +8 -3
  16. data/lib/pione/agent/task-worker.rb +9 -2
  17. data/lib/pione/command.rb +2 -0
  18. data/lib/pione/command/basic-command.rb +4 -0
  19. data/lib/pione/command/option.rb +4 -1
  20. data/lib/pione/command/pione-clean.rb +104 -17
  21. data/lib/pione/command/pione-client.rb +16 -3
  22. data/lib/pione/command/pione-command.rb +45 -0
  23. data/lib/pione/command/pione-compiler.rb +39 -0
  24. data/lib/pione/command/pione-log.rb +1 -0
  25. data/lib/pione/command/pione-task-worker.rb +6 -2
  26. data/lib/pione/command/pione-val.rb +1 -0
  27. data/lib/pione/front.rb +1 -0
  28. data/lib/pione/front/basic-front.rb +1 -1
  29. data/lib/pione/front/front-exception.rb +5 -1
  30. data/lib/pione/global.rb +3 -118
  31. data/lib/pione/global/broker-variable.rb +21 -8
  32. data/lib/pione/global/client-variable.rb +16 -8
  33. data/lib/pione/{system → global}/config.rb +2 -2
  34. data/lib/pione/global/global-exception.rb +40 -0
  35. data/lib/pione/global/input-generator-variable.rb +4 -1
  36. data/lib/pione/global/item.rb +168 -0
  37. data/lib/pione/global/log-variable.rb +64 -13
  38. data/lib/pione/global/network-variable.rb +4 -1
  39. data/lib/pione/global/package-variable.rb +25 -10
  40. data/lib/pione/global/path-variable.rb +62 -26
  41. data/lib/pione/global/relay-variable.rb +101 -36
  42. data/lib/pione/global/system-variable.rb +26 -9
  43. data/lib/pione/global/task-worker-variable.rb +19 -7
  44. data/lib/pione/global/tuple-space-notifier-variable.rb +60 -20
  45. data/lib/pione/lang.rb +0 -2
  46. data/lib/pione/lang/data-expr.rb +8 -0
  47. data/lib/pione/package/package-exception.rb +1 -1
  48. data/lib/pione/rule-engine/action-handler.rb +14 -12
  49. data/lib/pione/rule-engine/engine-exception.rb +11 -0
  50. data/lib/pione/rule-engine/flow-handler.rb +20 -11
  51. data/lib/pione/system.rb +1 -1
  52. data/lib/pione/system/file-cache.rb +1 -1
  53. data/lib/pione/system/init.rb +13 -15
  54. data/lib/pione/system/status.rb +30 -0
  55. data/lib/pione/system/system-exception.rb +0 -24
  56. data/lib/pione/test-helper.rb +8 -1
  57. data/lib/pione/test-helper/command-helper.rb +42 -15
  58. data/lib/pione/util.rb +1 -0
  59. data/lib/pione/util/embeded-expr-expander.rb +5 -11
  60. data/lib/pione/util/pnml-compiler.rb +97 -0
  61. data/lib/pione/util/profiler.rb +107 -0
  62. data/lib/pione/version.rb +1 -1
  63. data/man/pione-clean.1 +76 -0
  64. data/pione.gemspec +5 -2
  65. data/test/agent/spec_job-terminator.rb +41 -3
  66. data/test/command/data/pione-client/ActionError.pione +5 -0
  67. data/test/command/data/pione-compiler/Sequence.pnml +137 -0
  68. data/test/command/spec_pione-clean.rb +250 -5
  69. data/test/command/spec_pione-client.rb +57 -46
  70. data/test/command/spec_pione-command.rb +18 -0
  71. data/test/command/spec_pione-compiler.rb +13 -0
  72. data/test/global/spec_item.rb +77 -0
  73. data/test/lang/data/data-expr.yml +5 -0
  74. data/test/rule-engine/{spec_action-handler.pione → data/action-handler/BasicAction.pione} +0 -0
  75. data/test/rule-engine/data/action-handler/UsePackageScript.pione +17 -0
  76. data/test/rule-engine/spec_action-handler.rb +143 -80
  77. data/test/system/spec_status.rb +13 -0
  78. data/test/{tuple → tuple-space}/spec_basic-tuple.rb +0 -0
  79. data/test/{tuple → tuple-space}/spec_data-tuple.rb +0 -0
  80. data/test/{tuple → tuple-space}/spec_finished-tuple.rb +0 -0
  81. data/test/{tuple → tuple-space}/spec_message-tuple.rb +0 -0
  82. data/test/{tuple → tuple-space}/spec_task-tuple.rb +0 -0
  83. data/test/{tuple → tuple-space}/spec_touch-tuple.rb +0 -0
  84. data/test/{tuple → tuple-space}/spec_working-tuple.rb +0 -0
  85. data/test/{tuple → tuple-space}/tuple-behavior.rb +0 -0
  86. data/test/util/data/pnml/Sequence.pnml +137 -0
  87. data/test/util/spec_pnml-compiler.rb +21 -0
  88. data/test/util/spec_profiler.rb +53 -0
  89. metadata +75 -32
  90. data/example/ScoreAggregation/package.yml +0 -5
  91. data/example/ScoreAggregation/scenario/case1/scenario.yml +0 -29
  92. data/lib/pione/lang/interpolator-parser.rb +0 -44
  93. data/lib/pione/lang/interpolator-transformer.rb +0 -13
  94. data/test/lang/spec_interpolator-parser.rb +0 -5
  95. data/test/lang/spec_interpolator-transformer.rb +0 -15
@@ -0,0 +1,13 @@
1
+ require 'pione/test-helper'
2
+
3
+ describe Pione::System::Status do
4
+ it "should get success" do
5
+ System::Status.success.should.success
6
+ System::Status.success.should.not.error
7
+ end
8
+
9
+ it "should get error" do
10
+ System::Status.error(Exception.new).should.error
11
+ System::Status.error(Exception.new).should.not.success
12
+ end
13
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,137 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--PLEASE DO NOT EDIT THIS FILE
3
+ Created with Workflow PetriNet Designer Version 1.0 (woped.org)-->
4
+ <pnml>
5
+ <net type="http://www.informatik.hu-berlin.de/top/pntd/ptNetb" id="noID">
6
+ <place id="p3">
7
+ <name>
8
+ <text>o1</text>
9
+ <graphics>
10
+ <offset x="350" y="110"/>
11
+ </graphics>
12
+ </name>
13
+ <graphics>
14
+ <position x="350" y="70"/>
15
+ <dimension x="40" y="40"/>
16
+ </graphics>
17
+ </place>
18
+ <place id="p2">
19
+ <name>
20
+ <text>p1</text>
21
+ <graphics>
22
+ <offset x="200" y="110"/>
23
+ </graphics>
24
+ </name>
25
+ <graphics>
26
+ <position x="200" y="70"/>
27
+ <dimension x="40" y="40"/>
28
+ </graphics>
29
+ </place>
30
+ <place id="p1">
31
+ <name>
32
+ <text>i1</text>
33
+ <graphics>
34
+ <offset x="50" y="110"/>
35
+ </graphics>
36
+ </name>
37
+ <graphics>
38
+ <position x="50" y="70"/>
39
+ <dimension x="40" y="40"/>
40
+ </graphics>
41
+ </place>
42
+ <transition id="t2">
43
+ <name>
44
+ <text>B</text>
45
+ <graphics>
46
+ <offset x="270" y="110"/>
47
+ </graphics>
48
+ </name>
49
+ <graphics>
50
+ <position x="275" y="70"/>
51
+ <dimension x="40" y="40"/>
52
+ </graphics>
53
+ <toolspecific tool="WoPeD" version="1.0">
54
+ <time>0</time>
55
+ <timeUnit>1</timeUnit>
56
+ <orientation>1</orientation>
57
+ </toolspecific>
58
+ </transition>
59
+ <transition id="t1">
60
+ <name>
61
+ <text>A</text>
62
+ <graphics>
63
+ <offset x="120" y="110"/>
64
+ </graphics>
65
+ </name>
66
+ <graphics>
67
+ <position x="125" y="70"/>
68
+ <dimension x="40" y="40"/>
69
+ </graphics>
70
+ <toolspecific tool="WoPeD" version="1.0">
71
+ <time>0</time>
72
+ <timeUnit>1</timeUnit>
73
+ <orientation>1</orientation>
74
+ </toolspecific>
75
+ </transition>
76
+ <arc id="a1" source="p1" target="t1">
77
+ <inscription>
78
+ <text>1</text>
79
+ </inscription>
80
+ <graphics/>
81
+ <toolspecific tool="WoPeD" version="1.0">
82
+ <probability>1.0</probability>
83
+ <displayProbabilityOn>false</displayProbabilityOn>
84
+ <displayProbabilityPosition x="500.0" y="0.0"/>
85
+ </toolspecific>
86
+ </arc>
87
+ <arc id="a2" source="t1" target="p2">
88
+ <inscription>
89
+ <text>1</text>
90
+ </inscription>
91
+ <graphics/>
92
+ <toolspecific tool="WoPeD" version="1.0">
93
+ <probability>1.0</probability>
94
+ <displayProbabilityOn>false</displayProbabilityOn>
95
+ <displayProbabilityPosition x="500.0" y="0.0"/>
96
+ </toolspecific>
97
+ </arc>
98
+ <arc id="a3" source="p2" target="t2">
99
+ <inscription>
100
+ <text>1</text>
101
+ </inscription>
102
+ <graphics/>
103
+ <toolspecific tool="WoPeD" version="1.0">
104
+ <probability>1.0</probability>
105
+ <displayProbabilityOn>false</displayProbabilityOn>
106
+ <displayProbabilityPosition x="500.0" y="0.0"/>
107
+ </toolspecific>
108
+ </arc>
109
+ <arc id="a4" source="t2" target="p3">
110
+ <inscription>
111
+ <text>1</text>
112
+ </inscription>
113
+ <graphics/>
114
+ <toolspecific tool="WoPeD" version="1.0">
115
+ <probability>1.0</probability>
116
+ <displayProbabilityOn>false</displayProbabilityOn>
117
+ <displayProbabilityPosition x="500.0" y="0.0"/>
118
+ </toolspecific>
119
+ </arc>
120
+ <toolspecific tool="WoPeD" version="1.0">
121
+ <bounds>
122
+ <position x="2" y="24"/>
123
+ <dimension x="1168" y="565"/>
124
+ </bounds>
125
+ <scale>100</scale>
126
+ <treeWidthRight>911</treeWidthRight>
127
+ <overviewPanelVisible>true</overviewPanelVisible>
128
+ <treeHeightOverview>100</treeHeightOverview>
129
+ <treePanelVisible>true</treePanelVisible>
130
+ <verticalLayout>false</verticalLayout>
131
+ <resources/>
132
+ <simulations/>
133
+ <partnerLinks/>
134
+ <variables/>
135
+ </toolspecific>
136
+ </net>
137
+ </pnml>
@@ -0,0 +1,21 @@
1
+ require 'pione/test-helper'
2
+
3
+ TestHelper.scope do |this|
4
+ this::PNML1 = Location[File.dirname(__FILE__)] + "data" + "pnml" + "Sequence.pnml"
5
+
6
+ describe Pione::Util::PNMLCompiler do
7
+ it "should compile from PNML to PIONE" do
8
+ pione = Util::PNMLCompiler.new(this::PNML1).compile
9
+ env = Lang::Environment.new.setup_new_package("Test")
10
+ TestHelper::Lang.package_context!(env, pione)
11
+ rule_a = env.rule_get(Lang::RuleExpr.new("A"))
12
+ cond_a = rule_a.rule_condition_context.eval(env)
13
+ cond_a.inputs.should == [Lang::DataExprSequence.of("i1")]
14
+ cond_a.outputs.should == [Lang::DataExprSequence.of("p1")]
15
+ rule_b = env.rule_get(Lang::RuleExpr.new("B"))
16
+ cond_b = rule_b.rule_condition_context.eval(env)
17
+ cond_b.inputs.should == [Lang::DataExprSequence.of("p1")]
18
+ cond_b.outputs.should == [Lang::DataExprSequence.of("o1")]
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,53 @@
1
+ require 'pione/test-helper'
2
+
3
+ TestHelper.scope do |this|
4
+ class this::TestProfileReport1 < Util::ProfileReport
5
+ define_name "test1"
6
+ define_header("header1") {"value1"}
7
+ define_header("header2") {"value2"}
8
+ define_header("header3") {"value3"}
9
+ end
10
+
11
+ class this::TestClass
12
+ def initialize(report)
13
+ Util::Profiler.profile(report) do
14
+ @executed = true
15
+ end
16
+ end
17
+
18
+ def executed?
19
+ @executed
20
+ end
21
+ end
22
+
23
+ describe Pione::Util::Profiler do
24
+ before do
25
+ Global.profile_report_directory = Temppath.mkdir
26
+ Util::Profiler.init
27
+ end
28
+
29
+ it "should execute code with profile" do
30
+ # execute with profile
31
+ Util::Profiler.targets.push("test1")
32
+ obj = this::TestClass.new(this::TestProfileReport1.new)
33
+ Util::Profiler.targets.delete("test1")
34
+ obj.should.executed
35
+
36
+ # check the report
37
+ Util::Profiler.write_reports
38
+ Location[Global.profile_report_directory].file_entries do |entry|
39
+ entry.size.should > 0
40
+ end
41
+ end
42
+
43
+ it "should execute code without profile" do
44
+ # execute without profile
45
+ obj = this::TestClass.new(this::TestProfileReport1.new)
46
+ obj.should.executed
47
+
48
+ # check the report
49
+ Util::Profiler.write_reports
50
+ Location[Global.profile_report_directory].file_entries.to_a.size.should == 0
51
+ end
52
+ end
53
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pione
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-20 00:00:00.000000000 Z
12
+ date: 2013-10-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: parslet
@@ -114,7 +114,7 @@ dependencies:
114
114
  requirements:
115
115
  - - ~>
116
116
  - !ruby/object:Gem::Version
117
- version: 0.2.0
117
+ version: 0.3.1
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
@@ -122,7 +122,7 @@ dependencies:
122
122
  requirements:
123
123
  - - ~>
124
124
  - !ruby/object:Gem::Version
125
- version: 0.2.0
125
+ version: 0.3.1
126
126
  - !ruby/object:Gem::Dependency
127
127
  name: ruby-xes
128
128
  requirement: !ruby/object:Gem::Requirement
@@ -411,14 +411,32 @@ dependencies:
411
411
  - - ! '>='
412
412
  - !ruby/object:Gem::Version
413
413
  version: '0'
414
+ - !ruby/object:Gem::Dependency
415
+ name: ruby-prof
416
+ requirement: !ruby/object:Gem::Requirement
417
+ none: false
418
+ requirements:
419
+ - - ! '>='
420
+ - !ruby/object:Gem::Version
421
+ version: '0'
422
+ type: :development
423
+ prerelease: false
424
+ version_requirements: !ruby/object:Gem::Requirement
425
+ none: false
426
+ requirements:
427
+ - - ! '>='
428
+ - !ruby/object:Gem::Version
429
+ version: '0'
414
430
  description: PIONE(Process-rule for Input/Output Negotiation Enviromenment) is a rule-based
415
431
  workflow engine.
416
432
  email:
417
433
  - keita.yamaguchi@gmail.com
418
434
  executables:
435
+ - pione
419
436
  - pione-broker
420
437
  - pione-clean
421
438
  - pione-client
439
+ - pione-compiler
422
440
  - pione-log
423
441
  - pione-package
424
442
  - pione-relay
@@ -441,9 +459,11 @@ files:
441
459
  - LICENSE.txt
442
460
  - README.md
443
461
  - Rakefile
462
+ - bin/pione
444
463
  - bin/pione-broker
445
464
  - bin/pione-clean
446
465
  - bin/pione-client
466
+ - bin/pione-compiler
447
467
  - bin/pione-log
448
468
  - bin/pione-package
449
469
  - bin/pione-relay
@@ -612,7 +632,8 @@ files:
612
632
  - example/ScoreAggregation/bin/total-mean.rb
613
633
  - example/ScoreAggregation/bin/total-statistics.rb
614
634
  - example/ScoreAggregation/generate-data.rb
615
- - example/ScoreAggregation/package.yml
635
+ - example/ScoreAggregation/pione-package.json
636
+ - example/ScoreAggregation/scenario/case1/Scenario.pione
616
637
  - example/ScoreAggregation/scenario/case1/input/A.score
617
638
  - example/ScoreAggregation/scenario/case1/input/B.score
618
639
  - example/ScoreAggregation/scenario/case1/input/C.score
@@ -640,7 +661,7 @@ files:
640
661
  - example/ScoreAggregation/scenario/case1/input/Y.score
641
662
  - example/ScoreAggregation/scenario/case1/input/Z.score
642
663
  - example/ScoreAggregation/scenario/case1/input/stat-template.erb
643
- - example/ScoreAggregation/scenario/case1/scenario.yml
664
+ - example/ScoreAggregation/scenario/case1/pione-scenario.json
644
665
  - example/SequentialParameter/SequentialParameter.pione
645
666
  - example/SerialProcessing/SerialProcessing.pione
646
667
  - example/SerialProcessing/pione-package.json
@@ -776,6 +797,8 @@ files:
776
797
  - lib/pione/command/pione-broker.rb
777
798
  - lib/pione/command/pione-clean.rb
778
799
  - lib/pione/command/pione-client.rb
800
+ - lib/pione/command/pione-command.rb
801
+ - lib/pione/command/pione-compiler.rb
779
802
  - lib/pione/command/pione-log.rb
780
803
  - lib/pione/command/pione-package.rb
781
804
  - lib/pione/command/pione-relay-account-db.rb
@@ -800,7 +823,10 @@ files:
800
823
  - lib/pione/global.rb
801
824
  - lib/pione/global/broker-variable.rb
802
825
  - lib/pione/global/client-variable.rb
826
+ - lib/pione/global/config.rb
827
+ - lib/pione/global/global-exception.rb
803
828
  - lib/pione/global/input-generator-variable.rb
829
+ - lib/pione/global/item.rb
804
830
  - lib/pione/global/log-variable.rb
805
831
  - lib/pione/global/network-variable.rb
806
832
  - lib/pione/global/package-variable.rb
@@ -834,8 +860,6 @@ files:
834
860
  - lib/pione/lang/feature-expr.rb
835
861
  - lib/pione/lang/float.rb
836
862
  - lib/pione/lang/integer.rb
837
- - lib/pione/lang/interpolator-parser.rb
838
- - lib/pione/lang/interpolator-transformer.rb
839
863
  - lib/pione/lang/keyed-sequence.rb
840
864
  - lib/pione/lang/lang-exception.rb
841
865
  - lib/pione/lang/literal-parser.rb
@@ -917,12 +941,12 @@ files:
917
941
  - lib/pione/rule-engine/update-criteria.rb
918
942
  - lib/pione/system.rb
919
943
  - lib/pione/system/common.rb
920
- - lib/pione/system/config.rb
921
944
  - lib/pione/system/domain-info.rb
922
945
  - lib/pione/system/file-cache.rb
923
946
  - lib/pione/system/init.rb
924
947
  - lib/pione/system/object.rb
925
948
  - lib/pione/system/package-cache.rb
949
+ - lib/pione/system/status.rb
926
950
  - lib/pione/system/system-exception.rb
927
951
  - lib/pione/test-helper.rb
928
952
  - lib/pione/test-helper/command-helper.rb
@@ -956,13 +980,16 @@ files:
956
980
  - lib/pione/util/misc.rb
957
981
  - lib/pione/util/package-parameters-list.rb
958
982
  - lib/pione/util/parslet-extension.rb
983
+ - lib/pione/util/pnml-compiler.rb
959
984
  - lib/pione/util/positionable.rb
960
985
  - lib/pione/util/process-info.rb
986
+ - lib/pione/util/profiler.rb
961
987
  - lib/pione/util/uuid.rb
962
988
  - lib/pione/util/variable-holdable.rb
963
989
  - lib/pione/util/waiter-table.rb
964
990
  - lib/pione/util/zip.rb
965
991
  - lib/pione/version.rb
992
+ - man/pione-clean.1
966
993
  - misc/endurance-test/graph.plt
967
994
  - misc/endurance-test/run.sh
968
995
  - misc/env.sh
@@ -992,13 +1019,18 @@ files:
992
1019
  - test/command/data/PionePackageP3/pione-package.json
993
1020
  - test/command/data/PionePackageP4/P4.pione
994
1021
  - test/command/data/PionePackageP4/pione-package.json
1022
+ - test/command/data/pione-client/ActionError.pione
1023
+ - test/command/data/pione-compiler/Sequence.pnml
995
1024
  - test/command/data/pione-process.log
996
1025
  - test/command/data/pione-val.domain.dump
997
1026
  - test/command/spec_pione-clean.rb
998
1027
  - test/command/spec_pione-client.rb
1028
+ - test/command/spec_pione-command.rb
1029
+ - test/command/spec_pione-compiler.rb
999
1030
  - test/command/spec_pione-log.rb
1000
1031
  - test/command/spec_pione-package.rb
1001
1032
  - test/command/spec_pione-val.rb
1033
+ - test/global/spec_item.rb
1002
1034
  - test/lang/data/boolean.yml
1003
1035
  - test/lang/data/common-parser.yml
1004
1036
  - test/lang/data/conditional-branch-parser.yml
@@ -1039,8 +1071,6 @@ files:
1039
1071
  - test/lang/spec_feature-expr.rb
1040
1072
  - test/lang/spec_float.rb
1041
1073
  - test/lang/spec_integer.rb
1042
- - test/lang/spec_interpolator-parser.rb
1043
- - test/lang/spec_interpolator-transformer.rb
1044
1074
  - test/lang/spec_keyed-sequence.rb
1045
1075
  - test/lang/spec_literal-parser.rb
1046
1076
  - test/lang/spec_literal-transformer.rb
@@ -1168,7 +1198,8 @@ files:
1168
1198
  - test/package/spec_scenario-scanner.rb
1169
1199
  - test/patch/spec_rinda-patch.rb
1170
1200
  - test/patch/spec_uri-patch.rb
1171
- - test/rule-engine/spec_action-handler.pione
1201
+ - test/rule-engine/data/action-handler/BasicAction.pione
1202
+ - test/rule-engine/data/action-handler/UsePackageScript.pione
1172
1203
  - test/rule-engine/spec_action-handler.rb
1173
1204
  - test/rule-engine/spec_data-finder.rb
1174
1205
  - test/rule-engine/spec_data-finder.yml
@@ -1180,16 +1211,18 @@ files:
1180
1211
  - test/rule-engine/spec_update-criteria.yml
1181
1212
  - test/system/spec_domain-info.rb
1182
1213
  - test/system/spec_file-cache.rb
1214
+ - test/system/spec_status.rb
1215
+ - test/tuple-space/spec_basic-tuple.rb
1216
+ - test/tuple-space/spec_data-tuple.rb
1217
+ - test/tuple-space/spec_finished-tuple.rb
1218
+ - test/tuple-space/spec_message-tuple.rb
1219
+ - test/tuple-space/spec_task-tuple.rb
1220
+ - test/tuple-space/spec_touch-tuple.rb
1183
1221
  - test/tuple-space/spec_tuple-space-server.rb
1184
- - test/tuple/spec_basic-tuple.rb
1185
- - test/tuple/spec_data-tuple.rb
1186
- - test/tuple/spec_finished-tuple.rb
1187
- - test/tuple/spec_message-tuple.rb
1188
- - test/tuple/spec_task-tuple.rb
1189
- - test/tuple/spec_touch-tuple.rb
1190
- - test/tuple/spec_working-tuple.rb
1191
- - test/tuple/tuple-behavior.rb
1222
+ - test/tuple-space/spec_working-tuple.rb
1223
+ - test/tuple-space/tuple-behavior.rb
1192
1224
  - test/util/data/HelloWorld+v0.1.1.ppg
1225
+ - test/util/data/pnml/Sequence.pnml
1193
1226
  - test/util/spec_cpu.rb
1194
1227
  - test/util/spec_digest.rb
1195
1228
  - test/util/spec_evaluatable.rb
@@ -1204,7 +1237,9 @@ files:
1204
1237
  - test/util/spec_package-parameters-list_2.pione
1205
1238
  - test/util/spec_package-parameters-list_3.pione
1206
1239
  - test/util/spec_package-parameters-list_4.pione
1240
+ - test/util/spec_pnml-compiler.rb
1207
1241
  - test/util/spec_process-info.rb
1242
+ - test/util/spec_profiler.rb
1208
1243
  - test/util/spec_uuid.rb
1209
1244
  - test/util/spec_variable-holdable.rb
1210
1245
  - test/util/spec_zip.rb
@@ -1229,7 +1264,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1229
1264
  version: '0'
1230
1265
  segments:
1231
1266
  - 0
1232
- hash: -4611555535945850916
1267
+ hash: 2946858969410885422
1233
1268
  requirements: []
1234
1269
  rubyforge_project:
1235
1270
  rubygems_version: 1.8.25
@@ -1267,13 +1302,18 @@ test_files:
1267
1302
  - test/command/data/PionePackageP3/pione-package.json
1268
1303
  - test/command/data/PionePackageP4/P4.pione
1269
1304
  - test/command/data/PionePackageP4/pione-package.json
1305
+ - test/command/data/pione-client/ActionError.pione
1306
+ - test/command/data/pione-compiler/Sequence.pnml
1270
1307
  - test/command/data/pione-process.log
1271
1308
  - test/command/data/pione-val.domain.dump
1272
1309
  - test/command/spec_pione-clean.rb
1273
1310
  - test/command/spec_pione-client.rb
1311
+ - test/command/spec_pione-command.rb
1312
+ - test/command/spec_pione-compiler.rb
1274
1313
  - test/command/spec_pione-log.rb
1275
1314
  - test/command/spec_pione-package.rb
1276
1315
  - test/command/spec_pione-val.rb
1316
+ - test/global/spec_item.rb
1277
1317
  - test/lang/data/boolean.yml
1278
1318
  - test/lang/data/common-parser.yml
1279
1319
  - test/lang/data/conditional-branch-parser.yml
@@ -1314,8 +1354,6 @@ test_files:
1314
1354
  - test/lang/spec_feature-expr.rb
1315
1355
  - test/lang/spec_float.rb
1316
1356
  - test/lang/spec_integer.rb
1317
- - test/lang/spec_interpolator-parser.rb
1318
- - test/lang/spec_interpolator-transformer.rb
1319
1357
  - test/lang/spec_keyed-sequence.rb
1320
1358
  - test/lang/spec_literal-parser.rb
1321
1359
  - test/lang/spec_literal-transformer.rb
@@ -1443,7 +1481,8 @@ test_files:
1443
1481
  - test/package/spec_scenario-scanner.rb
1444
1482
  - test/patch/spec_rinda-patch.rb
1445
1483
  - test/patch/spec_uri-patch.rb
1446
- - test/rule-engine/spec_action-handler.pione
1484
+ - test/rule-engine/data/action-handler/BasicAction.pione
1485
+ - test/rule-engine/data/action-handler/UsePackageScript.pione
1447
1486
  - test/rule-engine/spec_action-handler.rb
1448
1487
  - test/rule-engine/spec_data-finder.rb
1449
1488
  - test/rule-engine/spec_data-finder.yml
@@ -1455,16 +1494,18 @@ test_files:
1455
1494
  - test/rule-engine/spec_update-criteria.yml
1456
1495
  - test/system/spec_domain-info.rb
1457
1496
  - test/system/spec_file-cache.rb
1497
+ - test/system/spec_status.rb
1498
+ - test/tuple-space/spec_basic-tuple.rb
1499
+ - test/tuple-space/spec_data-tuple.rb
1500
+ - test/tuple-space/spec_finished-tuple.rb
1501
+ - test/tuple-space/spec_message-tuple.rb
1502
+ - test/tuple-space/spec_task-tuple.rb
1503
+ - test/tuple-space/spec_touch-tuple.rb
1458
1504
  - test/tuple-space/spec_tuple-space-server.rb
1459
- - test/tuple/spec_basic-tuple.rb
1460
- - test/tuple/spec_data-tuple.rb
1461
- - test/tuple/spec_finished-tuple.rb
1462
- - test/tuple/spec_message-tuple.rb
1463
- - test/tuple/spec_task-tuple.rb
1464
- - test/tuple/spec_touch-tuple.rb
1465
- - test/tuple/spec_working-tuple.rb
1466
- - test/tuple/tuple-behavior.rb
1505
+ - test/tuple-space/spec_working-tuple.rb
1506
+ - test/tuple-space/tuple-behavior.rb
1467
1507
  - test/util/data/HelloWorld+v0.1.1.ppg
1508
+ - test/util/data/pnml/Sequence.pnml
1468
1509
  - test/util/spec_cpu.rb
1469
1510
  - test/util/spec_digest.rb
1470
1511
  - test/util/spec_evaluatable.rb
@@ -1479,7 +1520,9 @@ test_files:
1479
1520
  - test/util/spec_package-parameters-list_2.pione
1480
1521
  - test/util/spec_package-parameters-list_3.pione
1481
1522
  - test/util/spec_package-parameters-list_4.pione
1523
+ - test/util/spec_pnml-compiler.rb
1482
1524
  - test/util/spec_process-info.rb
1525
+ - test/util/spec_profiler.rb
1483
1526
  - test/util/spec_uuid.rb
1484
1527
  - test/util/spec_variable-holdable.rb
1485
1528
  - test/util/spec_zip.rb