gettext_i18n_rails 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a4dd291e15fd76fd0cc3b38c9e08bc2ceb660919
4
- data.tar.gz: 23285b33671f71bfffffc2f8d7a98a1234152898
3
+ metadata.gz: 81637bb2a53f8a8ba80ce961392da2504560e78f
4
+ data.tar.gz: 486b7f3fcbb883a32f87f0b1371f57b3db176409
5
5
  SHA512:
6
- metadata.gz: a692ad8e854d81e8ec9412383e5526b3ee43572480efc53cd08a683bd1bc404d565056a7e127e3491fb1a431c991b7fd1264bf64c9048611624b7da31fb8c7a7
7
- data.tar.gz: be798dab60d94e994f60bc16ce5b03240f9c8c0088e675a5640c8110100481940a08c69f1e9be893962fa4b56b97b7bb4e0fbad25a37725fa19142f761a1924b
6
+ metadata.gz: 8464136d5396b5f1a351933cbb613b4717f10d273c9a1f2cc61f2dbd3b94a9f3c1b834d77c52aebffce565a795c78d5760f9df236ebba132db0b9331433347c1
7
+ data.tar.gz: 45be2a2509a1fec097d3205214d25294b9ac173747b9f68788eacefe1b04f6b21649dc20c3e0d960eb95ed2a87825be28fa0eba648f98a8461f7cd83b6df6f5e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gettext_i18n_rails (1.0.0)
4
+ gettext_i18n_rails (1.0.1)
5
5
  fast_gettext (>= 0.4.8)
6
6
 
7
7
  GEM
@@ -40,7 +40,7 @@ GEM
40
40
  bump (0.4.2)
41
41
  diff-lcs (1.2.4)
42
42
  erubis (2.7.0)
43
- fast_gettext (0.7.1)
43
+ fast_gettext (0.8.0)
44
44
  gettext (3.0.2)
45
45
  locale (>= 2.0.5)
46
46
  text
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: /Users/mgrosser/code/tools/gettext_i18n_rails
3
3
  specs:
4
- gettext_i18n_rails (0.10.1)
4
+ gettext_i18n_rails (1.0.0)
5
5
  fast_gettext (>= 0.4.8)
6
6
 
7
7
  GEM
@@ -22,7 +22,7 @@ GEM
22
22
  rake
23
23
  bump (0.4.2)
24
24
  diff-lcs (1.2.4)
25
- fast_gettext (0.7.1)
25
+ fast_gettext (0.8.0)
26
26
  gettext (3.0.2)
27
27
  locale (>= 2.0.5)
28
28
  text
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: /Users/mgrosser/code/tools/gettext_i18n_rails
3
3
  specs:
4
- gettext_i18n_rails (0.10.1)
4
+ gettext_i18n_rails (1.0.0)
5
5
  fast_gettext (>= 0.4.8)
6
6
 
7
7
  GEM
@@ -43,7 +43,7 @@ GEM
43
43
  diff-lcs (1.2.4)
44
44
  erubis (2.6.6)
45
45
  abstract (>= 1.0.0)
46
- fast_gettext (0.7.1)
46
+ fast_gettext (0.8.0)
47
47
  gettext (3.0.2)
48
48
  locale (>= 2.0.5)
49
49
  text
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: /Users/mgrosser/code/tools/gettext_i18n_rails
3
3
  specs:
4
- gettext_i18n_rails (0.10.1)
4
+ gettext_i18n_rails (1.0.0)
5
5
  fast_gettext (>= 0.4.8)
6
6
 
7
7
  GEM
@@ -43,7 +43,7 @@ GEM
43
43
  bump (0.4.2)
44
44
  diff-lcs (1.2.4)
45
45
  erubis (2.7.0)
46
- fast_gettext (0.7.1)
46
+ fast_gettext (0.8.0)
47
47
  gettext (3.0.2)
48
48
  locale (>= 2.0.5)
49
49
  text
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: /Users/mgrosser/code/tools/gettext_i18n_rails
3
3
  specs:
4
- gettext_i18n_rails (0.10.1)
4
+ gettext_i18n_rails (1.0.0)
5
5
  fast_gettext (>= 0.4.8)
6
6
 
7
7
  GEM
@@ -42,7 +42,7 @@ GEM
42
42
  bump (0.4.2)
43
43
  diff-lcs (1.2.4)
44
44
  erubis (2.7.0)
45
- fast_gettext (0.7.1)
45
+ fast_gettext (0.8.0)
46
46
  gettext (3.0.2)
47
47
  locale (>= 2.0.5)
48
48
  text
@@ -6,7 +6,12 @@ module GettextI18nRails
6
6
  config.gettext_i18n_rails.use_for_active_record_attributes = true
7
7
 
8
8
  rake_tasks do
9
- require 'gettext_i18n_rails/tasks'
9
+ begin
10
+ gem "gettext", ">= 3.0.2"
11
+ require 'gettext_i18n_rails/tasks'
12
+ rescue Gem::LoadError
13
+ # no gettext available, no tasks for you!
14
+ end
10
15
  end
11
16
 
12
17
  config.after_initialize do |app|
@@ -1,3 +1,3 @@
1
1
  module GettextI18nRails
2
- Version = VERSION = '1.0.0'
2
+ Version = VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gettext_i18n_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-30 00:00:00.000000000 Z
11
+ date: 2013-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fast_gettext