ctioga2 0.13 → 0.13.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c0bb20ba501e3fd5bda7270ed5ef5330e0dd27c1
4
- data.tar.gz: 67b4272430de8d90aa5b539fb7ac6d8c21a9e111
3
+ metadata.gz: a07d4a54cc29cbb71a8bc00666a543ac18e517a7
4
+ data.tar.gz: d63a48a1b341054366ca8ac3b3a5340f245a5fb7
5
5
  SHA512:
6
- metadata.gz: 108ec5f7a5549506ba8ca7472949bbffae2d8fe4180cf1eff08bf0722a86a971ab3375a8a4594defa94e2a5e289e81909d7a6d0f8f7f0096e7a3708bab334d10
7
- data.tar.gz: fec86d2c4348f8c9862f419e1c4ba4aa0b00fd81801134ac2c6b6fe75012815cc8966f3417e6f6bcfc1f4ad94e958f72aa5b225cb76f3d1d2921303d6b3c3a28
6
+ metadata.gz: 89f0a3753f9571ac00d67debd05fe2c6cacb2aad6b56f3b16e5ada80027546dee08ac9fd4d7f66a327690f15b2b8fd1a88d5777faa5adde79557399c88d50028
7
+ data.tar.gz: b78c99f8c03e09524c002e3d4512958e711eef9443dd0d978db5fc410b1fc53f047a093c8df4530ca1554f1448f3b74175253e01e7735926c9f85cd87c1a3f9d
data/Changelog CHANGED
@@ -1,3 +1,10 @@
1
+ ctioga2 (0.13.1)
2
+
3
+ * Fix installation problems with recent ruby versions
4
+ * A --smooth hook (like in the old ctioga !)
5
+
6
+ -- Vincent <vincent.fourmond@9online.fr> Wed 29 Jul 20:30:22 CEST 2015
7
+
1
8
  ctioga2 (0.13)
2
9
 
3
10
  * Change the stroke width when using draw-marker
@@ -113,7 +113,7 @@ EOH
113
113
  CherryPickFilter =
114
114
  Cmd.new("cherry-pick", nil, "--cherry-pick",
115
115
  [CmdArg.new('text')], {}) do |plotmaker, formula|
116
- plotmaker.data_stack.add_to_dataset_hook("cherry-pick-last(#{formula})")
116
+ plotmaker.data_stack.add_to_dataset_hook("cherry-pick-last '#{formula}'")
117
117
  end
118
118
 
119
119
  CherryPickFilter.describe("Systematicallly remove data for which the formula is false",
@@ -186,6 +186,17 @@ producing 'lines to guide the eye'
186
186
  EOH
187
187
 
188
188
 
189
+ SmoothFilter =
190
+ Cmd.new("smooth", nil, "--smooth",
191
+ [CmdArg.new('integer')], {}) do |plotmaker, nb|
192
+ plotmaker.data_stack.add_to_dataset_hook("smooth-last #{nb}")
193
+ end
194
+
195
+ SmoothFilter.describe("Systematicallly smooth data",
196
+ <<EOH, FiltersGroup)
197
+ Install the {command: smooth-last} command as a dataset hook (see
198
+ {command: dataset-hook}): from now on, the datasets are all smoothed
199
+ EOH
189
200
 
190
201
 
191
202
 
@@ -164,7 +164,6 @@ module CTioga2
164
164
  def real_do(t)
165
165
  # First thing, we setup the boundaries
166
166
  @computed_boundaries = compute_boundaries
167
- p @computed_boundaries
168
167
 
169
168
  real_boundaries = get_boundaries
170
169
 
@@ -2,7 +2,7 @@
2
2
  module CTioga2
3
3
 
4
4
  module Version
5
- GIT_VERSION = '0.13'
6
- GIT_DATE = 'Thu 11 Jun 23:03:37 CEST 2015'
5
+ GIT_VERSION = '0.13.1'
6
+ GIT_DATE = 'Wed 29 Jul 20:32:19 CEST 2015'
7
7
  end
8
8
  end
data/setup.rb CHANGED
@@ -786,7 +786,7 @@ class ToplevelInstaller
786
786
  else
787
787
  require 'rbconfig'
788
788
  end
789
- ::Config::CONFIG
789
+ ::RbConfig::CONFIG
790
790
  end
791
791
 
792
792
  def initialize(ardir_root, config)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ctioga2
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.13'
4
+ version: 0.13.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vincent Fourmond <vincent.fourmond@9online.fr>
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-11 00:00:00.000000000 Z
11
+ date: 2015-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tioga