fossil 0.4.24 → 0.4.25

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.24
1
+ 0.4.25
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{fossil}
8
- s.version = "0.4.24"
8
+ s.version = "0.4.25"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Patrick Lardin, Daniel Sudol"]
@@ -14,7 +14,7 @@ module Sequel
14
14
 
15
15
  # take a fos_id like: "SEMJ.0.15.40210.1342" and convert to ["SEMJ", 0, 15, 40210, 1342]
16
16
  def fos_id_to_lookup_key(fos_id)
17
- fos_id.split('.').collect{|v| v.match(/\d+/) ? v.to_i : v}
17
+ fos_id.split('-').collect{|v| v.match(/\d+/) ? v.to_i : v}
18
18
  end
19
19
  end
20
20
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 24
9
- version: 0.4.24
8
+ - 25
9
+ version: 0.4.25
10
10
  platform: ruby
11
11
  authors:
12
12
  - Patrick Lardin, Daniel Sudol