ctioga2 0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +339 -0
- data/Changelog +6 -0
- data/bin/ctioga2 +26 -0
- data/lib/ctioga2/commands/arguments.rb +58 -0
- data/lib/ctioga2/commands/commands.rb +258 -0
- data/lib/ctioga2/commands/doc/doc.rb +118 -0
- data/lib/ctioga2/commands/doc/documentation-commands.rb +119 -0
- data/lib/ctioga2/commands/doc/help.rb +95 -0
- data/lib/ctioga2/commands/doc/html.rb +230 -0
- data/lib/ctioga2/commands/doc/introspection.rb +211 -0
- data/lib/ctioga2/commands/doc/man.rb +279 -0
- data/lib/ctioga2/commands/doc/markup.rb +359 -0
- data/lib/ctioga2/commands/general-commands.rb +119 -0
- data/lib/ctioga2/commands/general-types.rb +118 -0
- data/lib/ctioga2/commands/groups.rb +73 -0
- data/lib/ctioga2/commands/interpreter.rb +257 -0
- data/lib/ctioga2/commands/parsers/command-line.rb +187 -0
- data/lib/ctioga2/commands/parsers/file.rb +186 -0
- data/lib/ctioga2/commands/strings.rb +303 -0
- data/lib/ctioga2/commands/type.rb +100 -0
- data/lib/ctioga2/commands/variables.rb +101 -0
- data/lib/ctioga2/data/backends/backend.rb +260 -0
- data/lib/ctioga2/data/backends/backends.rb +39 -0
- data/lib/ctioga2/data/backends/backends/gnuplot.rb +140 -0
- data/lib/ctioga2/data/backends/backends/math.rb +121 -0
- data/lib/ctioga2/data/backends/backends/text.rb +335 -0
- data/lib/ctioga2/data/backends/description.rb +405 -0
- data/lib/ctioga2/data/backends/factory.rb +73 -0
- data/lib/ctioga2/data/backends/parameter.rb +109 -0
- data/lib/ctioga2/data/datacolumn.rb +245 -0
- data/lib/ctioga2/data/dataset.rb +233 -0
- data/lib/ctioga2/data/filters.rb +131 -0
- data/lib/ctioga2/data/merge.rb +43 -0
- data/lib/ctioga2/data/point.rb +72 -0
- data/lib/ctioga2/data/stack.rb +294 -0
- data/lib/ctioga2/graphics/coordinates.rb +73 -0
- data/lib/ctioga2/graphics/elements.rb +111 -0
- data/lib/ctioga2/graphics/elements/containers.rb +111 -0
- data/lib/ctioga2/graphics/elements/curve2d.rb +155 -0
- data/lib/ctioga2/graphics/elements/element.rb +90 -0
- data/lib/ctioga2/graphics/elements/primitive.rb +256 -0
- data/lib/ctioga2/graphics/elements/subplot.rb +140 -0
- data/lib/ctioga2/graphics/generator.rb +68 -0
- data/lib/ctioga2/graphics/legends.rb +108 -0
- data/lib/ctioga2/graphics/legends/area.rb +199 -0
- data/lib/ctioga2/graphics/legends/items.rb +183 -0
- data/lib/ctioga2/graphics/legends/provider.rb +58 -0
- data/lib/ctioga2/graphics/legends/storage.rb +65 -0
- data/lib/ctioga2/graphics/root.rb +209 -0
- data/lib/ctioga2/graphics/styles.rb +30 -0
- data/lib/ctioga2/graphics/styles/axes.rb +247 -0
- data/lib/ctioga2/graphics/styles/background.rb +122 -0
- data/lib/ctioga2/graphics/styles/base.rb +115 -0
- data/lib/ctioga2/graphics/styles/carrays.rb +53 -0
- data/lib/ctioga2/graphics/styles/curve.rb +101 -0
- data/lib/ctioga2/graphics/styles/drawable.rb +87 -0
- data/lib/ctioga2/graphics/styles/factory.rb +351 -0
- data/lib/ctioga2/graphics/styles/legend.rb +63 -0
- data/lib/ctioga2/graphics/styles/plot.rb +410 -0
- data/lib/ctioga2/graphics/styles/sets.rb +64 -0
- data/lib/ctioga2/graphics/styles/texts.rb +277 -0
- data/lib/ctioga2/graphics/subplot-commands.rb +141 -0
- data/lib/ctioga2/graphics/types.rb +188 -0
- data/lib/ctioga2/graphics/types/bijection.rb +79 -0
- data/lib/ctioga2/graphics/types/boundaries.rb +170 -0
- data/lib/ctioga2/graphics/types/boxes.rb +157 -0
- data/lib/ctioga2/graphics/types/dimensions.rb +157 -0
- data/lib/ctioga2/graphics/types/point.rb +247 -0
- data/lib/ctioga2/log.rb +97 -0
- data/lib/ctioga2/metabuilder/type.rb +316 -0
- data/lib/ctioga2/metabuilder/types.rb +39 -0
- data/lib/ctioga2/metabuilder/types/coordinates.rb +124 -0
- data/lib/ctioga2/metabuilder/types/dates.rb +43 -0
- data/lib/ctioga2/metabuilder/types/lists.rb +188 -0
- data/lib/ctioga2/metabuilder/types/numbers.rb +97 -0
- data/lib/ctioga2/metabuilder/types/strings.rb +93 -0
- data/lib/ctioga2/metabuilder/types/styles.rb +178 -0
- data/lib/ctioga2/plotmaker.rb +677 -0
- data/lib/ctioga2/postprocess.rb +115 -0
- data/lib/ctioga2/utils.rb +120 -0
- data/setup.rb +1586 -0
- metadata +144 -0
metadata
ADDED
@@ -0,0 +1,144 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ctioga2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: "0.0"
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Vincent Fourmond <vincent.fourmond@9online.fr>
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-07-22 00:00:00 +02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: tioga
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "1.11"
|
24
|
+
version:
|
25
|
+
description:
|
26
|
+
email: vincent.fourmond@9online.fr
|
27
|
+
executables:
|
28
|
+
- ctioga2
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- lib/ctioga2/graphics/legends/items.rb
|
35
|
+
- lib/ctioga2/graphics/legends/storage.rb
|
36
|
+
- lib/ctioga2/graphics/legends/area.rb
|
37
|
+
- lib/ctioga2/graphics/legends/provider.rb
|
38
|
+
- lib/ctioga2/graphics/styles/legend.rb
|
39
|
+
- lib/ctioga2/graphics/styles/plot.rb
|
40
|
+
- lib/ctioga2/graphics/styles/sets.rb
|
41
|
+
- lib/ctioga2/graphics/styles/background.rb
|
42
|
+
- lib/ctioga2/graphics/styles/axes.rb
|
43
|
+
- lib/ctioga2/graphics/styles/drawable.rb
|
44
|
+
- lib/ctioga2/graphics/styles/carrays.rb
|
45
|
+
- lib/ctioga2/graphics/styles/curve.rb
|
46
|
+
- lib/ctioga2/graphics/styles/factory.rb
|
47
|
+
- lib/ctioga2/graphics/styles/texts.rb
|
48
|
+
- lib/ctioga2/graphics/styles/base.rb
|
49
|
+
- lib/ctioga2/graphics/types/boxes.rb
|
50
|
+
- lib/ctioga2/graphics/types/bijection.rb
|
51
|
+
- lib/ctioga2/graphics/types/dimensions.rb
|
52
|
+
- lib/ctioga2/graphics/types/point.rb
|
53
|
+
- lib/ctioga2/graphics/types/boundaries.rb
|
54
|
+
- lib/ctioga2/graphics/legends.rb
|
55
|
+
- lib/ctioga2/graphics/elements/containers.rb
|
56
|
+
- lib/ctioga2/graphics/elements/primitive.rb
|
57
|
+
- lib/ctioga2/graphics/elements/subplot.rb
|
58
|
+
- lib/ctioga2/graphics/elements/element.rb
|
59
|
+
- lib/ctioga2/graphics/elements/curve2d.rb
|
60
|
+
- lib/ctioga2/graphics/root.rb
|
61
|
+
- lib/ctioga2/graphics/styles.rb
|
62
|
+
- lib/ctioga2/graphics/types.rb
|
63
|
+
- lib/ctioga2/graphics/generator.rb
|
64
|
+
- lib/ctioga2/graphics/subplot-commands.rb
|
65
|
+
- lib/ctioga2/graphics/coordinates.rb
|
66
|
+
- lib/ctioga2/graphics/elements.rb
|
67
|
+
- lib/ctioga2/commands/parsers/file.rb
|
68
|
+
- lib/ctioga2/commands/parsers/command-line.rb
|
69
|
+
- lib/ctioga2/commands/doc/markup.rb
|
70
|
+
- lib/ctioga2/commands/doc/introspection.rb
|
71
|
+
- lib/ctioga2/commands/doc/html.rb
|
72
|
+
- lib/ctioga2/commands/doc/doc.rb
|
73
|
+
- lib/ctioga2/commands/doc/documentation-commands.rb
|
74
|
+
- lib/ctioga2/commands/doc/help.rb
|
75
|
+
- lib/ctioga2/commands/doc/man.rb
|
76
|
+
- lib/ctioga2/commands/general-types.rb
|
77
|
+
- lib/ctioga2/commands/groups.rb
|
78
|
+
- lib/ctioga2/commands/commands.rb
|
79
|
+
- lib/ctioga2/commands/type.rb
|
80
|
+
- lib/ctioga2/commands/interpreter.rb
|
81
|
+
- lib/ctioga2/commands/arguments.rb
|
82
|
+
- lib/ctioga2/commands/variables.rb
|
83
|
+
- lib/ctioga2/commands/strings.rb
|
84
|
+
- lib/ctioga2/commands/general-commands.rb
|
85
|
+
- lib/ctioga2/data/backends/backends/text.rb
|
86
|
+
- lib/ctioga2/data/backends/backends/gnuplot.rb
|
87
|
+
- lib/ctioga2/data/backends/backends/math.rb
|
88
|
+
- lib/ctioga2/data/backends/parameter.rb
|
89
|
+
- lib/ctioga2/data/backends/description.rb
|
90
|
+
- lib/ctioga2/data/backends/backend.rb
|
91
|
+
- lib/ctioga2/data/backends/factory.rb
|
92
|
+
- lib/ctioga2/data/backends/backends.rb
|
93
|
+
- lib/ctioga2/data/merge.rb
|
94
|
+
- lib/ctioga2/data/dataset.rb
|
95
|
+
- lib/ctioga2/data/stack.rb
|
96
|
+
- lib/ctioga2/data/datacolumn.rb
|
97
|
+
- lib/ctioga2/data/filters.rb
|
98
|
+
- lib/ctioga2/data/point.rb
|
99
|
+
- lib/ctioga2/plotmaker.rb
|
100
|
+
- lib/ctioga2/metabuilder/types/lists.rb
|
101
|
+
- lib/ctioga2/metabuilder/types/dates.rb
|
102
|
+
- lib/ctioga2/metabuilder/types/styles.rb
|
103
|
+
- lib/ctioga2/metabuilder/types/strings.rb
|
104
|
+
- lib/ctioga2/metabuilder/types/coordinates.rb
|
105
|
+
- lib/ctioga2/metabuilder/types/numbers.rb
|
106
|
+
- lib/ctioga2/metabuilder/type.rb
|
107
|
+
- lib/ctioga2/metabuilder/types.rb
|
108
|
+
- lib/ctioga2/utils.rb
|
109
|
+
- lib/ctioga2/log.rb
|
110
|
+
- lib/ctioga2/postprocess.rb
|
111
|
+
- COPYING
|
112
|
+
- Changelog
|
113
|
+
- setup.rb
|
114
|
+
- bin/ctioga2
|
115
|
+
has_rdoc: true
|
116
|
+
homepage: http://ctioga2.rubyforge.org
|
117
|
+
licenses: []
|
118
|
+
|
119
|
+
post_install_message:
|
120
|
+
rdoc_options: []
|
121
|
+
|
122
|
+
require_paths:
|
123
|
+
- lib
|
124
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: "0"
|
129
|
+
version:
|
130
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: "0"
|
135
|
+
version:
|
136
|
+
requirements: []
|
137
|
+
|
138
|
+
rubyforge_project: ctioga2
|
139
|
+
rubygems_version: 1.3.4
|
140
|
+
signing_key:
|
141
|
+
specification_version: 3
|
142
|
+
summary: CTioga2 - command-line interface for the Tioga plotting library
|
143
|
+
test_files: []
|
144
|
+
|