attr-translatable 0.1.0
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/LICENSE +177 -0
- data/README.md +39 -0
- data/Rakefile +20 -0
- data/lib/attr_translatable.rb +7 -0
- data/lib/attr_translatable/base.rb +38 -0
- data/lib/attr_translatable/translation.rb +39 -0
- data/lib/attr_translatable/version.rb +3 -0
- data/lib/generators/attr_translatable/attr_translatable_generator.rb +29 -0
- data/lib/generators/attr_translatable/templates/create_attr_translations.rb +15 -0
- data/lib/models/attr_translation.rb +9 -0
- data/spec/attr_translatable_spec.rb +63 -0
- data/spec/spec_helper.rb +45 -0
- metadata +159 -0
data/LICENSE
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
data/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
## attr-translatable
|
|
2
|
+
|
|
3
|
+
attr-translatable gem allows you to translate string attributes of your ActiveRecord.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add to Gemfile
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
gem 'attr-translatable', :require => 'attr_translatable'
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Run:
|
|
14
|
+
```ruby
|
|
15
|
+
bundle install
|
|
16
|
+
rails g attr_translatable
|
|
17
|
+
rake db:migrate
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage Example
|
|
21
|
+
|
|
22
|
+
```ruby
|
|
23
|
+
class Post < ActiveRecord
|
|
24
|
+
attr_accessible :title, :content, :author
|
|
25
|
+
attr_translatable :title, :content
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
@post = Post.create(
|
|
29
|
+
title: "New Blog Post",
|
|
30
|
+
content: "attr-translatable is awesome!",
|
|
31
|
+
author: "Katsuya Noguchi"
|
|
32
|
+
)
|
|
33
|
+
@post.update_translation(:title, :ja, "新しいブログポスト")
|
|
34
|
+
@post.translate(:title, :ja)
|
|
35
|
+
#=> "新しいブログポスト"
|
|
36
|
+
```
|
|
37
|
+
## Authors
|
|
38
|
+
|
|
39
|
+
* Katsuya Noguchi: http://github.com/katsuyan
|
data/Rakefile
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'rdoc/task'
|
|
2
|
+
require 'rubygems'
|
|
3
|
+
require 'rubygems/package_task'
|
|
4
|
+
require 'rspec/core/rake_task'
|
|
5
|
+
|
|
6
|
+
desc 'Default: run specs.'
|
|
7
|
+
task :default => :rspec
|
|
8
|
+
|
|
9
|
+
desc 'Run the specs'
|
|
10
|
+
RSpec::Core::RakeTask.new(:rspec) do |t|
|
|
11
|
+
t.rspec_opts = ['--color']
|
|
12
|
+
t.pattern = './spec/**/*_spec.rb'
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
spec = Gem::Specification.load("#{File.dirname(__FILE__)}/attr-translatable.gemspec")
|
|
16
|
+
|
|
17
|
+
desc "Package gem."
|
|
18
|
+
Gem::PackageTask.new(spec) do |pkg|
|
|
19
|
+
pkg.gem_spec = spec
|
|
20
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
module AttrTranslatable
|
|
4
|
+
module Base
|
|
5
|
+
def self.included(klass)
|
|
6
|
+
klass.extend ClassMethods
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
module ClassMethods
|
|
10
|
+
def attr_translatable(*args)
|
|
11
|
+
attrs = validate_attrs(args)
|
|
12
|
+
unless ancestors.include?(AttrTranslatable::Translation)
|
|
13
|
+
@valid_translatable_attrs = attrs
|
|
14
|
+
has_many :attr_translatables, as: :model, dependent: :destroy
|
|
15
|
+
include AttrTranslatable::Translation
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def valid_translatable_attrs
|
|
20
|
+
@valid_translatable_attrs || []
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
private
|
|
24
|
+
|
|
25
|
+
def validate_attrs(attrs)
|
|
26
|
+
valid_attrs = self.new.attributes.keys
|
|
27
|
+
attrs.map do |a|
|
|
28
|
+
a = a.to_s
|
|
29
|
+
raise ArgumentError, "#{a} is not an attribute of #{self.name}." unless valid_attrs.include?(a)
|
|
30
|
+
type = columns.find { |c| c.name == a }.type
|
|
31
|
+
raise ArgumentError, "Only a string type can be translatable." unless type == :string
|
|
32
|
+
a
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
module AttrTranslatable
|
|
4
|
+
module Translation
|
|
5
|
+
|
|
6
|
+
def update_translation(attr, lang, translation)
|
|
7
|
+
new_translation(attr, lang, translation).save
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def translate(attr, lang)
|
|
11
|
+
internal_translate(attr, lang)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def t(attr, lang)
|
|
15
|
+
internal_translate(attr, lang)
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
private
|
|
19
|
+
|
|
20
|
+
def new_translation(attr, lang, translation)
|
|
21
|
+
attr, lang = [attr.to_s, lang.to_s]
|
|
22
|
+
validate_attr(attr)
|
|
23
|
+
at = AttrTranslation.find_or_initialize_by_attr_and_lang_and_model_id_and_model_type(attr, lang, self.id, self.class.name)
|
|
24
|
+
at.translation = translation
|
|
25
|
+
at
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def internal_translate(attr, lang)
|
|
29
|
+
attr, lang = [attr.to_s, lang.to_s]
|
|
30
|
+
validate_attr(attr)
|
|
31
|
+
at = AttrTranslation.select(:translation).where(attr: attr, lang: lang, model_id: self.id, model_type: self.class.name).first
|
|
32
|
+
at ? at.translation : self.send(attr)
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def validate_attr(attr)
|
|
36
|
+
raise ArgumentError, "#{attr} is not translatable attribute." unless self.class.valid_translatable_attrs.include?(attr)
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
require 'rails/generators'
|
|
4
|
+
require 'rails/generators/migration'
|
|
5
|
+
require 'rails/generators/active_record'
|
|
6
|
+
|
|
7
|
+
class AttrTranslatableGenerator < Rails::Generators::Base
|
|
8
|
+
include Rails::Generators::Migration
|
|
9
|
+
|
|
10
|
+
desc "Creates migration files required by attr-translatable gem."
|
|
11
|
+
|
|
12
|
+
self.source_paths << File.join(File.dirname(__FILE__), 'templates')
|
|
13
|
+
|
|
14
|
+
def self.next_migration_number(path)
|
|
15
|
+
ActiveRecord::Generators::Base.next_migration_number(path)
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def create_migration_files
|
|
19
|
+
create_migration_file_if_not_exist 'create_attr_translations'
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
private
|
|
23
|
+
|
|
24
|
+
def create_migration_file_if_not_exist(file_name)
|
|
25
|
+
unless self.class.migration_exists?(File.dirname(File.expand_path("db/migrate/#{file_name}")), file_name)
|
|
26
|
+
migration_template "#{file_name}.rb", "db/migrate/#{file_name}.rb"
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
class CreateAttrTranslations < ActiveRecord::Migration
|
|
4
|
+
def self.change
|
|
5
|
+
create_table :attr_translations do |t|
|
|
6
|
+
t.string :translation
|
|
7
|
+
t.string :lang
|
|
8
|
+
t.string :attr
|
|
9
|
+
t.references :model, polymorphic: true
|
|
10
|
+
t.timestamps
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
add_index :attr_translations, [:lang, :attr, :model_id, :model_type], unique: true, name: "index_attr_translations_on_attr_and_lang_and_model"
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
|
|
5
|
+
describe ActiveRecord::Base do
|
|
6
|
+
|
|
7
|
+
before :each do
|
|
8
|
+
@post = Post.create :title => "Blog Title", :content => "Blog Content", :url => "www.katsuyan.me/post/1"
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
context "when attr_translatable is called with invalid args" do
|
|
12
|
+
describe "#attr_translatable" do
|
|
13
|
+
it "raises an error if a given attr is not defined" do
|
|
14
|
+
lambda { Post.attr_translatable :attr_undefined }.should raise_error ArgumentError
|
|
15
|
+
end
|
|
16
|
+
it "raises an error if a given attr is not a string" do
|
|
17
|
+
lambda { Post.attr_translatable :votes }.should raise_error ArgumentError
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
context "when attr_translatable is called with valid args" do
|
|
23
|
+
before :each do
|
|
24
|
+
Post.attr_translatable :title, :content
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
describe "#update_translation" do
|
|
28
|
+
context "when non translatable attribute is given" do
|
|
29
|
+
it "raises an error" do
|
|
30
|
+
lambda { @post.update_translation(:url, :ja, "アドレス") }.should raise_error ArgumentError
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
describe "#translate" do
|
|
36
|
+
context "when translatable attribute is given" do
|
|
37
|
+
context "translation exists" do
|
|
38
|
+
before :each do
|
|
39
|
+
@ja_translation = "ブログのタイトル"
|
|
40
|
+
@post.update_translation(:title, :ja, @ja_translation)
|
|
41
|
+
end
|
|
42
|
+
it "returns a translation" do
|
|
43
|
+
@post.translate(:title, :ja).should == @ja_translation
|
|
44
|
+
@post.t(:title, :ja).should == @ja_translation
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
context "translation does not exist" do
|
|
49
|
+
it "returns a default string" do
|
|
50
|
+
@post.translate(:title, :fr).should == "Blog Title"
|
|
51
|
+
@post.t(:title, :fr).should == "Blog Title"
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
context "when non translatable attribute is given" do
|
|
56
|
+
it "should raise an error" do
|
|
57
|
+
lambda { @post.translate(:url, :ja) }.should raise_error ArgumentError
|
|
58
|
+
lambda { @post.t(:url, :ja) }.should raise_error ArgumentError
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
end
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
require 'active_record'
|
|
4
|
+
require 'database_cleaner'
|
|
5
|
+
require 'sqlite3'
|
|
6
|
+
require 'attr_translatable'
|
|
7
|
+
|
|
8
|
+
ActiveRecord::Base.establish_connection(
|
|
9
|
+
adapter: "sqlite3",
|
|
10
|
+
database: ":memory:"
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
RSpec.configure do |config|
|
|
14
|
+
config.before :each do
|
|
15
|
+
DatabaseCleaner.start
|
|
16
|
+
end
|
|
17
|
+
config.after :each do
|
|
18
|
+
DatabaseCleaner.clean
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
ActiveRecord::Migration.verbose = false
|
|
23
|
+
|
|
24
|
+
ActiveRecord::Schema.define do
|
|
25
|
+
create_table :attr_translations do |t|
|
|
26
|
+
t.string :translation
|
|
27
|
+
t.string :lang
|
|
28
|
+
t.string :attr
|
|
29
|
+
t.references :model, polymorphic: true
|
|
30
|
+
t.timestamps
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
add_index :attr_translations, [:lang, :attr, :model_id, :model_type], unique: true, name: "index_attr_translations_on_attr_and_lang_and_model"
|
|
34
|
+
|
|
35
|
+
create_table :posts do |t|
|
|
36
|
+
t.string :title
|
|
37
|
+
t.string :content
|
|
38
|
+
t.integer :votes
|
|
39
|
+
t.string :url
|
|
40
|
+
t.timestamps
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
class Post < ActiveRecord::Base
|
|
45
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: attr-translatable
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Katsuya Noguchi
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-08-03 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: activerecord
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :development
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
30
|
+
- !ruby/object:Gem::Dependency
|
|
31
|
+
name: rake
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
34
|
+
requirements:
|
|
35
|
+
- - ! '>='
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: 0.8.7
|
|
38
|
+
type: :development
|
|
39
|
+
prerelease: false
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: 0.8.7
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: rspec
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
none: false
|
|
50
|
+
requirements:
|
|
51
|
+
- - ~>
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '2.8'
|
|
54
|
+
type: :development
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
58
|
+
requirements:
|
|
59
|
+
- - ~>
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '2.8'
|
|
62
|
+
- !ruby/object:Gem::Dependency
|
|
63
|
+
name: rdoc
|
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
66
|
+
requirements:
|
|
67
|
+
- - ! '>='
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
70
|
+
type: :development
|
|
71
|
+
prerelease: false
|
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
74
|
+
requirements:
|
|
75
|
+
- - ! '>='
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '0'
|
|
78
|
+
- !ruby/object:Gem::Dependency
|
|
79
|
+
name: database_cleaner
|
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
|
81
|
+
none: false
|
|
82
|
+
requirements:
|
|
83
|
+
- - ~>
|
|
84
|
+
- !ruby/object:Gem::Version
|
|
85
|
+
version: 0.7.1
|
|
86
|
+
type: :development
|
|
87
|
+
prerelease: false
|
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
89
|
+
none: false
|
|
90
|
+
requirements:
|
|
91
|
+
- - ~>
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: 0.7.1
|
|
94
|
+
- !ruby/object:Gem::Dependency
|
|
95
|
+
name: sqlite3
|
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
|
97
|
+
none: false
|
|
98
|
+
requirements:
|
|
99
|
+
- - ~>
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: 1.3.5
|
|
102
|
+
type: :development
|
|
103
|
+
prerelease: false
|
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
+
none: false
|
|
106
|
+
requirements:
|
|
107
|
+
- - ~>
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: 1.3.5
|
|
110
|
+
description: attr-translatable gem allows attributes of ActiveRecord to be translated.
|
|
111
|
+
email:
|
|
112
|
+
- katsuya7s@gmail.com
|
|
113
|
+
executables: []
|
|
114
|
+
extensions: []
|
|
115
|
+
extra_rdoc_files: []
|
|
116
|
+
files:
|
|
117
|
+
- LICENSE
|
|
118
|
+
- README.md
|
|
119
|
+
- Rakefile
|
|
120
|
+
- lib/attr_translatable/base.rb
|
|
121
|
+
- lib/attr_translatable/translation.rb
|
|
122
|
+
- lib/attr_translatable/version.rb
|
|
123
|
+
- lib/attr_translatable.rb
|
|
124
|
+
- lib/generators/attr_translatable/attr_translatable_generator.rb
|
|
125
|
+
- lib/generators/attr_translatable/templates/create_attr_translations.rb
|
|
126
|
+
- lib/models/attr_translation.rb
|
|
127
|
+
- spec/attr_translatable_spec.rb
|
|
128
|
+
- spec/spec_helper.rb
|
|
129
|
+
homepage: https://github.com/katsuyan/attr-translatable
|
|
130
|
+
licenses: []
|
|
131
|
+
post_install_message:
|
|
132
|
+
rdoc_options: []
|
|
133
|
+
require_paths:
|
|
134
|
+
- lib
|
|
135
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
|
+
none: false
|
|
137
|
+
requirements:
|
|
138
|
+
- - ! '>='
|
|
139
|
+
- !ruby/object:Gem::Version
|
|
140
|
+
version: '0'
|
|
141
|
+
segments:
|
|
142
|
+
- 0
|
|
143
|
+
hash: -1703276739540596886
|
|
144
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
|
+
none: false
|
|
146
|
+
requirements:
|
|
147
|
+
- - ! '>='
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '0'
|
|
150
|
+
segments:
|
|
151
|
+
- 0
|
|
152
|
+
hash: -1703276739540596886
|
|
153
|
+
requirements: []
|
|
154
|
+
rubyforge_project:
|
|
155
|
+
rubygems_version: 1.8.24
|
|
156
|
+
signing_key:
|
|
157
|
+
specification_version: 3
|
|
158
|
+
summary: attr-translatable gem allows attributes of ActiveRecord to be translated.
|
|
159
|
+
test_files: []
|