fin 0.1.2 → 0.1.3

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.
Files changed (4) hide show
  1. data/HISTORY +4 -0
  2. data/VERSION +1 -1
  3. data/lib/fin/models/model.rb +2 -2
  4. metadata +3 -3
data/HISTORY CHANGED
@@ -29,3 +29,7 @@
29
29
  == 0.1.2 / 2011-05-08
30
30
 
31
31
  * Version bump
32
+
33
+ == 0.1.3 / 2011-05-15
34
+
35
+ * JRuby compatibility
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -7,7 +7,7 @@ module Fin
7
7
  include Enumerable
8
8
 
9
9
  def self.attribute_types
10
- @attribute_types ||= superclass.attribute_types.dup rescue {}
10
+ @attribute_types ||= (superclass.attribute_types.dup rescue {})
11
11
  end
12
12
 
13
13
  def self.model_class_id value = nil
@@ -20,7 +20,7 @@ module Fin
20
20
  end
21
21
 
22
22
  def self.model_classes
23
- @model_classes ||= superclass.model_classes rescue {} #shared list for all subclasses
23
+ @model_classes ||= (superclass.model_classes rescue {}) #shared list for all subclasses
24
24
  end
25
25
 
26
26
  def self.property prop_hash
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: fin
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.2
5
+ version: 0.1.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - arvicco
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-08 00:00:00 +04:00
13
+ date: 2011-05-15 00:00:00 +04:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
135
  requirements: []
136
136
 
137
137
  rubyforge_project:
138
- rubygems_version: 1.5.0
138
+ rubygems_version: 1.6.2
139
139
  signing_key:
140
140
  specification_version: 3
141
141
  summary: Domain models and container structures for market data feeds