polyglot 0.2.3 → 0.2.4

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.
@@ -1,3 +1,8 @@
1
+ == 0.2.4 2008-05-29
2
+
3
+ * 1 significant fix:
4
+ * Previous LoadError change is checked in this time (oops!)
5
+
1
6
  == 0.2.3 2008-05-29
2
7
 
3
8
  * 2 minor enhancements:
@@ -54,7 +54,7 @@ module Kernel
54
54
  rescue LoadError => load_error
55
55
  begin
56
56
  Polyglot.load(*a, &b)
57
- rescue
57
+ rescue LoadError
58
58
  # Raise the original exception, possibly a MissingSourceFile with a path
59
59
  raise load_error
60
60
  end
@@ -2,7 +2,7 @@ module Polyglot #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polyglot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clifford Heath
@@ -9,10 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-05-29 00:00:00 +10:00
12
+ date: 2009-01-29 00:00:00 +11:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hoe
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.8.0
24
+ version:
16
25
  description: Allows custom language loaders for specified file extensions to be hooked into require
17
26
  email: cjheath@rubyforge.org
18
27
  executables: []
@@ -73,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
82
  requirements: []
74
83
 
75
84
  rubyforge_project: polyglot
76
- rubygems_version: 1.1.0
85
+ rubygems_version: 1.2.0
77
86
  signing_key:
78
87
  specification_version: 2
79
88
  summary: Allows custom language loaders for specified file extensions to be hooked into require