gettext_i18n_rails 0.4.2 → 0.4.3
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.
- data/Readme.md +1 -0
- data/VERSION +1 -1
- data/gettext_i18n_rails.gemspec +2 -2
- data/lib/gettext_i18n_rails/model_attributes_finder.rb +1 -1
- metadata +4 -4
data/Readme.md
CHANGED
|
@@ -218,6 +218,7 @@ lib/tasks/gettext.rake:
|
|
|
218
218
|
- [Paul McMahon](https://github.com/pwim)
|
|
219
219
|
- [Rainux Luo](https://github.com/rainux)
|
|
220
220
|
- [Lucas Hills](https://github.com/2potatocakes)
|
|
221
|
+
- [Ladislav Slezák](https://github.com/lslezak)
|
|
221
222
|
|
|
222
223
|
[Michael Grosser](http://grosser.it)<br/>
|
|
223
224
|
grosser.michael@gmail.com<br/>
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.3
|
data/gettext_i18n_rails.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "gettext_i18n_rails"
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Michael Grosser"]
|
|
12
|
-
s.date = "2012-01-
|
|
12
|
+
s.date = "2012-01-13"
|
|
13
13
|
s.email = "grosser.michael@gmail.com"
|
|
14
14
|
s.files = [
|
|
15
15
|
"Gemfile",
|
|
@@ -39,7 +39,7 @@ module GettextI18nRails
|
|
|
39
39
|
def find(options)
|
|
40
40
|
found = Hash.new([])
|
|
41
41
|
|
|
42
|
-
connection = ActiveRecord::Base.connection
|
|
42
|
+
connection = ::ActiveRecord::Base.connection
|
|
43
43
|
connection.tables.each do |table_name|
|
|
44
44
|
next if ignored?(table_name,options[:ignore_tables])
|
|
45
45
|
connection.columns(table_name).each do |column|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gettext_i18n_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 4
|
|
9
|
-
-
|
|
10
|
-
version: 0.4.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.4.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Michael Grosser
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-01-
|
|
18
|
+
date: 2012-01-13 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
prerelease: false
|