rails-data-explorer 0.2.1 → 0.2.2

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: 3c75cb60d7ecddbc2fb8e07eb44d25b959b20ba3
4
- data.tar.gz: cfdfa4cfa4e253190a32a7ee35d13538158e1a93
3
+ metadata.gz: 97a1736026323867194e064be61c520d93faeae5
4
+ data.tar.gz: 73a2d84730255fad42699c4a1b8b6ded248296b0
5
5
  SHA512:
6
- metadata.gz: 1c030c17f16b5f3a421015a4efe29c3d314cbc087f9defe62d9460245fd19332051f754af3ccfea9dfcffb781110444bf5e104a183c8021dc7b4ab90cac235ad
7
- data.tar.gz: de5468fd6bd0136f96ba11e7a03f7879cffbcad0b78d4c343cc7cca6b9227827623aa461366ebab7868e6e5ec52b076112c1b5d99ed8237874d893827583cc32
6
+ metadata.gz: db1654f07bff7cd93caf4498e75ea4360f8291da035e77513694ff5615e3a395fbd08d223f3a29f97898c88a0848ceb64fb2909ff2ddd7cc664ff8fb5ec36a07
7
+ data.tar.gz: 60713884e311d17d48e8c221f62fc1d47649407f1eef47e1f2356c163cf71268df168092126d36e5e28d2a1ce89262e00940ea61c77a5fe463222eda9be18acc
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.2.2
2
+
3
+ * Fixed file inclusion bug that prevented loading of Gem
4
+
1
5
  ### 0.2.1
2
6
 
3
7
  * Fixed a bug
@@ -1,5 +1,3 @@
1
-
2
-
3
1
  require 'action_view'
4
2
  require 'active_support/all' # TODO: once the dust settles, only require the modules we need
5
3
  require 'color'
@@ -37,7 +35,7 @@ require 'rails-data-explorer/chart/parallel_set'
37
35
  require 'rails-data-explorer/chart/pie_chart'
38
36
  require 'rails-data-explorer/chart/scatterplot'
39
37
  require 'rails-data-explorer/chart/stacked_bar_chart_categorical_percent'
40
- require 'rails-data-explorer/chart/stacked_histogram_temporal'
38
+ # require 'rails-data-explorer/chart/stacked_histogram_temporal'
41
39
  require 'rails-data-explorer/data_type/categorical'
42
40
  require 'rails-data-explorer/data_type/quantitative'
43
41
  require 'rails-data-explorer/data_type/quantitative/decimal'
@@ -40,12 +40,12 @@ class RailsDataExplorer
40
40
  dimensions_count_min: 2,
41
41
  dimensions_count_max: 2,
42
42
  },
43
- {
44
- chart_class: Chart::StackedHistogramTemporal,
45
- chart_roles: [:y],
46
- dimensions_count_min: 2,
47
- dimensions_count_max: 2,
48
- },
43
+ # {
44
+ # chart_class: Chart::StackedHistogramTemporal,
45
+ # chart_roles: [:y],
46
+ # dimensions_count_min: 2,
47
+ # dimensions_count_max: 2,
48
+ # },
49
49
  {
50
50
  chart_class: Chart::ContingencyTable,
51
51
  chart_roles: [:any],
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.name = 'rails-data-explorer'
6
- gem.version = '0.2.1'
6
+ gem.version = '0.2.2'
7
7
  gem.platform = Gem::Platform::RUBY
8
8
 
9
9
  gem.authors = ['Jo Hund']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-data-explorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jo Hund
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-28 00:00:00.000000000 Z
11
+ date: 2015-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: color