i18n_screwdriver 7.1 → 7.2

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: 664dc4e3b6bb1c67258b51ec66547a7a8938a5f4
4
- data.tar.gz: 3c41d11e3d34cac784fcd2bc2fec2f925a5ebf99
3
+ metadata.gz: 293873fc147864d7305890fd69ed388a22d1e2fa
4
+ data.tar.gz: adcf94a59cc26fedbb04b61063537148535605f3
5
5
  SHA512:
6
- metadata.gz: 7008234c2336366b9043a8852794fbe7e27e043d492dd3a1666b485e7cf7319b069f25babf846c0467303e8ef8e4697154d8911c22241e6d40a413fff19c2fd5
7
- data.tar.gz: 1669696619a0d364080dec760c4cf5fecc6689600da17dddcf2d1a4d29b0210715763b83c169e28c0c86c291c783c972a60d96eb8cac2d8d74d3b4cec2efe178
6
+ metadata.gz: 21415c32d6ea6593e46b0d211ebd5fcd0aa0bd353192fd30ca6c7d36ed73e93ee42ccf41695a229b8af57e09b1281bd9e8b04a851cf616abc530c4a164b3817a
7
+ data.tar.gz: fb2122f5e42e77426aa8a711a81d93550f121a0ae5923f8cec2d31588783fef5ddad19d9d52672c68f10151062d4ab1c83f18ad3a4cd95900897d9749f6ecb96
data/LICENSE.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2010 - 2013 Tobias Miesel
4
- Copyright (c) 2010 - 2013 Corin Langosch
3
+ Copyright (c) 2010 - 2014 Tobias Miesel
4
+ Copyright (c) 2010 - 2014 Corin Langosch
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
@@ -1,3 +1,3 @@
1
1
  module I18nScrewdriver
2
- VERSION = "7.1"
2
+ VERSION = "7.2"
3
3
  end
data/lib/tasks/i18n.rake CHANGED
@@ -3,9 +3,8 @@ namespace :i18n do
3
3
  task :update => :environment do
4
4
  translations = I18nScrewdriver.gather_translations
5
5
  puts "Found #{translations.keys.size} unique translations"
6
- I18nScrewdriver.available_locales.each do |locale|
7
- I18nScrewdriver.update_translations_file(locale, translations)
8
- end
6
+ default_locale = I18n.default_locale.to_s
7
+ I18nScrewdriver.update_translations_file(default_locale, translations)
9
8
  end
10
9
 
11
10
  desc 'Translate all not yet translated texts for a given locale'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: i18n_screwdriver
3
3
  version: !ruby/object:Gem::Version
4
- version: '7.1'
4
+ version: '7.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Miesel
@@ -9,34 +9,34 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-10-16 00:00:00.000000000 Z
12
+ date: 2014-11-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ">="
18
+ - - '>='
19
19
  - !ruby/object:Gem::Version
20
20
  version: '0'
21
21
  type: :development
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ">="
25
+ - - '>='
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: rails
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ">="
32
+ - - '>='
33
33
  - !ruby/object:Gem::Version
34
34
  version: 3.0.0
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ">="
39
+ - - '>='
40
40
  - !ruby/object:Gem::Version
41
41
  version: 3.0.0
42
42
  description: make translating with rails i18n fun again
@@ -47,7 +47,7 @@ executables: []
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
- - ".gitignore"
50
+ - .gitignore
51
51
  - Gemfile
52
52
  - Gemfile.lock
53
53
  - LICENSE.txt
@@ -71,18 +71,19 @@ require_paths:
71
71
  - lib
72
72
  required_ruby_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ">="
74
+ - - '>='
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  required_rubygems_version: !ruby/object:Gem::Requirement
78
78
  requirements:
79
- - - ">="
79
+ - - '>='
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project: i18n_screwdriver
84
- rubygems_version: 2.2.2
84
+ rubygems_version: 2.2.1
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: make translating with rails i18n fun again
88
88
  test_files: []
89
+ has_rdoc: