i18n-missing_translations 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ module I18n
|
|
2
2
|
class MissingTranslations
|
3
3
|
module Handler
|
4
4
|
def call(exception, locale, key, options)
|
5
|
-
I18n.missing_translations.log(exception.keys) if
|
5
|
+
I18n.missing_translations.log(exception.keys) if MissingTranslation === exception
|
6
6
|
super
|
7
7
|
end
|
8
8
|
end
|
metadata
CHANGED
@@ -1,83 +1,70 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: i18n-missing_translations
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 1
|
10
|
-
version: 0.0.1
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
prerelease:
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Sven Fuchs
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
12
|
+
date: 2012-02-27 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: i18n
|
16
|
+
requirement: &70237714465620 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.6.0
|
22
|
+
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
|
24
|
+
version_requirements: *70237714465620
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: test_declarative
|
27
|
+
requirement: &70237714464840 !ruby/object:Gem::Requirement
|
25
28
|
none: false
|
26
|
-
requirements:
|
27
|
-
- -
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
|
30
|
-
segments:
|
31
|
-
- 0
|
32
|
-
version: "0"
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
33
|
type: :development
|
34
|
-
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70237714464840
|
35
36
|
description: Find missing translations in your code more easily.
|
36
37
|
email: svenfuchs@artweb-design.de
|
37
38
|
executables: []
|
38
|
-
|
39
39
|
extensions: []
|
40
|
-
|
41
40
|
extra_rdoc_files: []
|
42
|
-
|
43
|
-
files:
|
41
|
+
files:
|
44
42
|
- lib/i18n/missing_translations.rb
|
45
43
|
- lib/i18n/missing_translations/handler.rb
|
46
44
|
- lib/i18n/missing_translations/log.rb
|
47
45
|
- lib/i18n/missing_translations/version.rb
|
48
|
-
has_rdoc: true
|
49
46
|
homepage: http://github.com/svenfuchs/i18n-missing_translations
|
50
47
|
licenses: []
|
51
|
-
|
52
48
|
post_install_message:
|
53
49
|
rdoc_options: []
|
54
|
-
|
55
|
-
require_paths:
|
50
|
+
require_paths:
|
56
51
|
- lib
|
57
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
58
53
|
none: false
|
59
|
-
requirements:
|
60
|
-
- -
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
|
63
|
-
|
64
|
-
- 0
|
65
|
-
version: "0"
|
66
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
59
|
none: false
|
68
|
-
requirements:
|
69
|
-
- -
|
70
|
-
- !ruby/object:Gem::Version
|
71
|
-
|
72
|
-
segments:
|
73
|
-
- 0
|
74
|
-
version: "0"
|
60
|
+
requirements:
|
61
|
+
- - ! '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
75
64
|
requirements: []
|
76
|
-
|
77
|
-
|
78
|
-
rubygems_version: 1.3.7
|
65
|
+
rubyforge_project: ! '[none]'
|
66
|
+
rubygems_version: 1.8.17
|
79
67
|
signing_key:
|
80
68
|
specification_version: 3
|
81
69
|
summary: Find missing translations in your code more easily
|
82
70
|
test_files: []
|
83
|
-
|