translation_center 1.5.1 → 1.5.2
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 -1
- data/app/models/translation_center/translation.rb +2 -3
- data/app/models/translation_center/translation_key.rb +1 -1
- data/app/views/translation_center/center/_activity.html.haml +1 -1
- data/app/views/translation_center/translations/_show.html.haml +2 -2
- data/lib/generators/translation_center/install/templates/migrations/create_translation_center_translations.rb +1 -1
- data/lib/tasks/translation_center.rake +1 -1
- data/lib/translation_center/acts_as_translator.rb +2 -2
- data/lib/translation_center/translations_transfer.rb +1 -1
- data/lib/translation_center/version.rb +1 -1
- data/test/dummy/db/migrate/20130506103956_fix_translation_user_relation.rb +12 -0
- data/test/dummy/db/schema.rb +2 -1
- data/test/dummy/log/development.log +13644 -0
- metadata +4 -4
- data/test/dummy/tmp/pids/server.pid +0 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: translation_center
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2013-
|
|
14
|
+
date: 2013-05-07 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rails
|
|
@@ -283,6 +283,7 @@ files:
|
|
|
283
283
|
- test/dummy/README.rdoc
|
|
284
284
|
- test/dummy/db/schema.rb
|
|
285
285
|
- test/dummy/db/migrate/20130410084711235602_install_audited.rb
|
|
286
|
+
- test/dummy/db/migrate/20130506103956_fix_translation_user_relation.rb
|
|
286
287
|
- test/dummy/db/migrate/20130410082611_devise_create_users.rb
|
|
287
288
|
- test/dummy/db/migrate/20130410084711_acts_as_votable_migration.rb
|
|
288
289
|
- test/dummy/db/migrate/20130410084711234392_create_translation_center_categories.rb
|
|
@@ -347,7 +348,6 @@ files:
|
|
|
347
348
|
- test/dummy/public/favicon.ico
|
|
348
349
|
- test/dummy/public/500.html
|
|
349
350
|
- test/dummy/public/404.html
|
|
350
|
-
- test/dummy/tmp/pids/server.pid
|
|
351
351
|
- test/dummy/tmp/cache/assets/E64/640/sprockets%2Fdefdf9f0eddac95f602fd8d18c1c9c10
|
|
352
352
|
- test/dummy/tmp/cache/assets/C5A/9B0/sprockets%2F19a7fe49a7e548113c0b258139735629
|
|
353
353
|
- test/dummy/tmp/cache/assets/D01/3C0/sprockets%2Fd3ffab60d107685c7c005db15093237d
|
|
@@ -747,6 +747,7 @@ test_files:
|
|
|
747
747
|
- test/dummy/README.rdoc
|
|
748
748
|
- test/dummy/db/schema.rb
|
|
749
749
|
- test/dummy/db/migrate/20130410084711235602_install_audited.rb
|
|
750
|
+
- test/dummy/db/migrate/20130506103956_fix_translation_user_relation.rb
|
|
750
751
|
- test/dummy/db/migrate/20130410082611_devise_create_users.rb
|
|
751
752
|
- test/dummy/db/migrate/20130410084711_acts_as_votable_migration.rb
|
|
752
753
|
- test/dummy/db/migrate/20130410084711234392_create_translation_center_categories.rb
|
|
@@ -811,7 +812,6 @@ test_files:
|
|
|
811
812
|
- test/dummy/public/favicon.ico
|
|
812
813
|
- test/dummy/public/500.html
|
|
813
814
|
- test/dummy/public/404.html
|
|
814
|
-
- test/dummy/tmp/pids/server.pid
|
|
815
815
|
- test/dummy/tmp/cache/assets/E64/640/sprockets%2Fdefdf9f0eddac95f602fd8d18c1c9c10
|
|
816
816
|
- test/dummy/tmp/cache/assets/C5A/9B0/sprockets%2F19a7fe49a7e548113c0b258139735629
|
|
817
817
|
- test/dummy/tmp/cache/assets/D01/3C0/sprockets%2Fd3ffab60d107685c7c005db15093237d
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
28828
|