endeca_on_demand 0.9.5 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,8 @@
1
1
  class EndecaOnDemand
2
2
  class BusinessRule
3
3
 
4
+ attr_reader :properties_array
5
+
4
6
  def initialize(business_rule)
5
7
  @properties_array = []
6
8
  @records = []
@@ -11,7 +13,11 @@ class EndecaOnDemand
11
13
  end
12
14
  end
13
15
 
14
- attr_reader :properties_array
16
+ def method_missing(method, *args, &block)
17
+ unless self.instance_variables.include?(:"@#{method}")
18
+ "N/A"
19
+ end
20
+ end
15
21
 
16
22
  end
17
23
  end
@@ -7,6 +7,12 @@ class EndecaOnDemand
7
7
  self.class_eval("attr_reader :#{key.downcase}")
8
8
  end
9
9
  end
10
+
11
+ def method_missing(method, *args, &block)
12
+ unless self.instance_variables.include?(:"@#{method}")
13
+ "N/A"
14
+ end
15
+ end
10
16
 
11
17
  end
12
18
  end
@@ -8,5 +8,11 @@ class EndecaOnDemand
8
8
  end
9
9
  end
10
10
 
11
+ def method_missing(method, *args, &block)
12
+ unless self.instance_variables.include?(:"@#{method}")
13
+ "N/A"
14
+ end
15
+ end
16
+
11
17
  end
12
18
  end
@@ -1,6 +1,8 @@
1
1
  class EndecaOnDemand
2
2
  class Dimension
3
3
 
4
+ attr_reader :dimension_values
5
+
4
6
  def initialize(dimension)
5
7
  @dimension_values = []
6
8
 
@@ -10,7 +12,11 @@ class EndecaOnDemand
10
12
  end
11
13
  end
12
14
 
13
- attr_reader :dimension_values
15
+ def method_missing(method, *args, &block)
16
+ unless self.instance_variables.include?(:"@#{method}")
17
+ "N/A"
18
+ end
19
+ end
14
20
 
15
21
  end
16
22
  end
@@ -8,5 +8,11 @@ class EndecaOnDemand
8
8
  end
9
9
  end
10
10
 
11
+ def method_missing(method, *args, &block)
12
+ unless self.instance_variables.include?(:"@#{method}")
13
+ "N/A"
14
+ end
15
+ end
16
+
11
17
  end
12
18
  end
@@ -8,5 +8,11 @@ class EndecaOnDemand
8
8
  end
9
9
  end
10
10
 
11
+ def method_missing(method, *args, &block)
12
+ unless self.instance_variables.include?(:"@#{method}")
13
+ "N/A"
14
+ end
15
+ end
16
+
11
17
  end
12
18
  end
@@ -8,5 +8,11 @@ class EndecaOnDemand
8
8
  end
9
9
  end
10
10
 
11
+ def method_missing(method, *args, &block)
12
+ unless self.instance_variables.include?(:"@#{method}")
13
+ "N/A"
14
+ end
15
+ end
16
+
11
17
  end
12
18
  end
@@ -8,5 +8,11 @@ class EndecaOnDemand
8
8
  end
9
9
  end
10
10
 
11
+ def method_missing(method, *args, &block)
12
+ unless self.instance_variables.include?(:"@#{method}")
13
+ "N/A"
14
+ end
15
+ end
16
+
11
17
  end
12
18
  end
@@ -1,3 +1,3 @@
1
1
  class EndecaOnDemand
2
- VERSION = "0.9.5"
2
+ VERSION = "0.9.6"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: endeca_on_demand
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.9.5
5
+ version: 0.9.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - sdomino