ruby-plot 0.0.3 → 0.3.1
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/VERSION +1 -1
- data/lib/plot_lines.rb +1 -1
- data/lib/plot_points.rb +2 -1
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.3.1
|
data/lib/plot_lines.rb
CHANGED
|
@@ -125,7 +125,7 @@ module RubyPlot
|
|
|
125
125
|
#output_plt_arr.push "set key invert reverse Left outside"
|
|
126
126
|
output_plt_arr.push "set xlabel \"#{x_lable}\""
|
|
127
127
|
output_plt_arr.push "set ylabel \"#{y_lable}\""
|
|
128
|
-
output_plt_arr.push "set arrow from 0,0 to 100,100 nohead"
|
|
128
|
+
output_plt_arr.push "set arrow from 0,0 to 100,100 nohead lt 0"
|
|
129
129
|
output_plt_arr.push ""
|
|
130
130
|
output_plt_arr.push ""
|
|
131
131
|
output_plt_arr.push ""
|
data/lib/plot_points.rb
CHANGED
|
@@ -153,7 +153,8 @@ module RubyPlot
|
|
|
153
153
|
output_plt_arr.push "set key below"
|
|
154
154
|
output_plt_arr.push "set xlabel \"#{x_lable}\""
|
|
155
155
|
output_plt_arr.push "set ylabel \"#{y_lable}\""
|
|
156
|
-
|
|
156
|
+
|
|
157
|
+
output_plt_arr.push "set arrow from "+min_border.to_s+","+min_border.to_s+" to "+max_border.to_s+","+max_border.to_s+" nohead lt 0"
|
|
157
158
|
output_plt_arr.push ""
|
|
158
159
|
output_plt_arr.push ""
|
|
159
160
|
output_plt_arr.push ""
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-plot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
- 0
|
|
9
8
|
- 3
|
|
10
|
-
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.3.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- David Vorgrimmler
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-05-
|
|
19
|
+
date: 2011-05-13 00:00:00 +02:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|