copycat 0.2.1 → 0.2.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 +8 -1
- data/app/models/copycat_translation.rb +4 -0
- data/lib/copycat/version.rb +1 -1
- data/spec/dummy/config/initializers/copycat.rb +2 -2
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/{20120320194234_create_copycat_translations.copycat_engine.rb → 20120407193855_create_copycat_translations.copycat_engine.rb} +0 -0
- data/spec/dummy/db/schema.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +25 -1299
- data/spec/dummy/log/test.log +179 -23252
- data/spec/factories/copycat_translations.rb +2 -2
- data/spec/integration/copycat_spec.rb +16 -16
- data/spec/integration/dummy_spec.rb +2 -2
- data/spec/models/copycat_translation_spec.rb +7 -7
- metadata +65 -82
- data/spec/dummy/tmp/cache/assets/C19/060/sprockets%2F125436f53217b7f564aa5016d1168709 +0 -0
- data/spec/dummy/tmp/cache/assets/CB3/6E0/sprockets%2F0f4c96b04436bf7ae900561753947d4c +0 -0
- data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/D09/190/sprockets%2Fb2bddd007999a56d8b20c92301ea1983 +0 -0
- data/spec/dummy/tmp/cache/assets/D1A/DB0/sprockets%2F26d700197b8d25f954d56d8f31f2c8bc +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/DA4/EE0/sprockets%2Fcd39e3d56788faea331e0f5bac67329b +0 -0
- data/spec/dummy/tmp/cache/assets/DBD/220/sprockets%2F0cbff5c1a349439c1c444cbb4a57acc4 +0 -0
- data/spec/dummy/tmp/cache/assets/DDD/780/sprockets%2Fe7880b84c3ecb507fabc99b9ef6b70e3 +0 -0
- data/spec/dummy/tmp/cache/assets/DF8/310/sprockets%2Fccb12c4009c2f876d51dee8bae4c64ec +0 -0
@@ -6,7 +6,7 @@ require 'spec_helper'
|
|
6
6
|
feature "copycat index" do
|
7
7
|
|
8
8
|
before do
|
9
|
-
|
9
|
+
FactoryGirl.create(:copycat_translation, :key => "foo", :value => "bar")
|
10
10
|
page.driver.browser.basic_authorize Copycat.username, Copycat.password
|
11
11
|
visit copycat_translations_path
|
12
12
|
end
|
@@ -51,14 +51,14 @@ feature "copycat index" do
|
|
51
51
|
end
|
52
52
|
|
53
53
|
it "searches in the middles of strings" do
|
54
|
-
|
54
|
+
FactoryGirl.create(:copycat_translation, :key => "site.index.something")
|
55
55
|
fill_in 'search', :with => 'index'
|
56
56
|
click_button 'Search'
|
57
57
|
page.should have_content 'site.index.something'
|
58
58
|
end
|
59
59
|
|
60
60
|
it "can show all" do
|
61
|
-
|
61
|
+
FactoryGirl.create(:copycat_translation, :key => "foe", :value => "beer")
|
62
62
|
click_button 'Search'
|
63
63
|
page.should have_content 'foo'
|
64
64
|
page.should have_content 'foe'
|
@@ -68,9 +68,9 @@ feature "copycat index" do
|
|
68
68
|
|
69
69
|
before do
|
70
70
|
CopycatTranslation.destroy_all
|
71
|
-
|
72
|
-
|
73
|
-
|
71
|
+
FactoryGirl.create(:copycat_translation, key: "foo", value: "bar1", locale: "en")
|
72
|
+
FactoryGirl.create(:copycat_translation, key: "foo", value: "bar2", locale: "fa")
|
73
|
+
FactoryGirl.create(:copycat_translation, key: "foo", value: "bar3", locale: "it")
|
74
74
|
end
|
75
75
|
|
76
76
|
#locale
|
@@ -197,7 +197,7 @@ end
|
|
197
197
|
|
198
198
|
feature "copycat edit" do
|
199
199
|
before do
|
200
|
-
|
200
|
+
FactoryGirl.create(:copycat_translation, :key => "foo", :value => "bar")
|
201
201
|
page.driver.browser.basic_authorize Copycat.username, Copycat.password
|
202
202
|
visit copycat_translations_path
|
203
203
|
end
|
@@ -212,7 +212,7 @@ end
|
|
212
212
|
|
213
213
|
feature "copycat update, delete" do
|
214
214
|
before do
|
215
|
-
|
215
|
+
FactoryGirl.create(:copycat_translation, :key => "foo", :value => "bar")
|
216
216
|
page.driver.browser.basic_authorize Copycat.username, Copycat.password
|
217
217
|
visit copycat_translations_path
|
218
218
|
fill_in 'search', :with => 'foo'
|
@@ -242,11 +242,11 @@ feature "downloading and uploading yaml files" do
|
|
242
242
|
end
|
243
243
|
|
244
244
|
it "round-trips the YAML" do
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
245
|
+
FactoryGirl.create(:copycat_translation, :key => "a.foo1", :value => "bar1")
|
246
|
+
FactoryGirl.create(:copycat_translation, :key => "a.foo2:", :value => "bar2")
|
247
|
+
FactoryGirl.create(:copycat_translation, :key => "a.b.foo3", :value => "bar3")
|
248
|
+
FactoryGirl.create(:copycat_translation, :key => "c.foo4", :value => "bar4")
|
249
|
+
FactoryGirl.create(:copycat_translation, :key => 2, :value => "bar5")
|
250
250
|
assert CopycatTranslation.count == 5
|
251
251
|
|
252
252
|
visit import_export_copycat_translations_path
|
@@ -274,7 +274,7 @@ feature "downloading and uploading yaml files" do
|
|
274
274
|
|
275
275
|
it "round-trips the yaml with complicated text" do
|
276
276
|
value = "“hello world“ üokåa®fgsdf;::fs;kdf"
|
277
|
-
|
277
|
+
FactoryGirl.create(:copycat_translation, :key => "a.foo", :value => value)
|
278
278
|
|
279
279
|
visit import_export_copycat_translations_path
|
280
280
|
click_link 'Download as YAML'
|
@@ -339,8 +339,8 @@ feature "locales" do
|
|
339
339
|
end
|
340
340
|
|
341
341
|
it "exports yaml containing multiple locales" do
|
342
|
-
|
343
|
-
|
342
|
+
FactoryGirl.create(:copycat_translation, locale: 'en', key: 'hello', value: 'world')
|
343
|
+
FactoryGirl.create(:copycat_translation, locale: 'es', key: 'hello', value: 'mundo')
|
344
344
|
|
345
345
|
visit download_copycat_translations_path
|
346
346
|
yaml = page.text
|
@@ -39,8 +39,8 @@ end
|
|
39
39
|
feature "locales" do
|
40
40
|
|
41
41
|
it "displays different text based on users' locale" do
|
42
|
-
|
43
|
-
|
42
|
+
FactoryGirl.create(:copycat_translation, locale: 'en', key: 'site.index.intro', value: 'world')
|
43
|
+
FactoryGirl.create(:copycat_translation, locale: 'es', key: 'site.index.intro', value: 'mundo')
|
44
44
|
|
45
45
|
I18n.locale = :en
|
46
46
|
visit root_path
|
@@ -30,8 +30,8 @@ describe CopycatTranslation do
|
|
30
30
|
end
|
31
31
|
|
32
32
|
it "imports YAML" do
|
33
|
-
|
34
|
-
|
33
|
+
FactoryGirl.create(:copycat_translation, :key => "sample_copy", :value => "copyfoo")
|
34
|
+
FactoryGirl.create(:copycat_translation, :key => "sample_copy2", :value => "copybaz")
|
35
35
|
|
36
36
|
assert CopycatTranslation.find_by_key("sample_copy").value == "copyfoo"
|
37
37
|
assert CopycatTranslation.find_by_key("sample_copy2").value == "copybaz"
|
@@ -62,13 +62,13 @@ describe CopycatTranslation do
|
|
62
62
|
end
|
63
63
|
|
64
64
|
it "exports YAML" do
|
65
|
-
|
66
|
-
|
65
|
+
FactoryGirl.create(:copycat_translation, :key => "sample_copy", :value => "copyfoo")
|
66
|
+
FactoryGirl.create(:copycat_translation, :key => "sample_copy2", :value => "copybaz")
|
67
67
|
yaml = CopycatTranslation.export_yaml
|
68
68
|
assert yaml =~ /sample_copy: copyfoo\n\s*sample_copy2: copybaz/
|
69
69
|
|
70
|
-
|
71
|
-
|
70
|
+
FactoryGirl.create(:copycat_translation, :key => "a.sample_copy3", :value => "copyfoo")
|
71
|
+
FactoryGirl.create(:copycat_translation, :key => "a.sample_copy4", :value => "copybaz")
|
72
72
|
yaml = CopycatTranslation.export_yaml
|
73
73
|
assert yaml =~ /a:\n\s*sample_copy3: copyfoo\n\s* sample_copy4: copybaz/
|
74
74
|
end
|
@@ -76,7 +76,7 @@ describe CopycatTranslation do
|
|
76
76
|
it "exports and then imports complicated YAML" do
|
77
77
|
key = "moby_dick"
|
78
78
|
value = %|<p>Lorem ipsum</p><p class="highlight">∆'≈:</p>|
|
79
|
-
|
79
|
+
FactoryGirl.create(:copycat_translation, key: key, value: value)
|
80
80
|
yaml = CopycatTranslation.export_yaml
|
81
81
|
CopycatTranslation.destroy_all
|
82
82
|
CopycatTranslation.import_yaml(StringIO.new(yaml))
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: copycat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,11 +10,11 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-04-
|
13
|
+
date: 2012-04-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
17
|
-
requirement:
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,7 +22,12 @@ dependencies:
|
|
22
22
|
version: 3.0.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements:
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ! '>='
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: 3.0.0
|
26
31
|
description: Edit live website copy.
|
27
32
|
email:
|
28
33
|
- info@vermonster.com
|
@@ -30,79 +35,68 @@ executables: []
|
|
30
35
|
extensions: []
|
31
36
|
extra_rdoc_files: []
|
32
37
|
files:
|
33
|
-
- app/assets/stylesheets/copycat_engine.css
|
34
|
-
- app/controllers/copycat_translations_controller.rb
|
35
38
|
- app/models/copycat_translation.rb
|
36
|
-
- app/
|
39
|
+
- app/assets/stylesheets/copycat_engine.css
|
37
40
|
- app/views/copycat_translations/help.html.erb
|
38
41
|
- app/views/copycat_translations/import_export.html.erb
|
39
42
|
- app/views/copycat_translations/index.html.erb
|
43
|
+
- app/views/copycat_translations/edit.html.erb
|
40
44
|
- app/views/layouts/copycat.html.erb
|
45
|
+
- app/controllers/copycat_translations_controller.rb
|
41
46
|
- config/routes.rb
|
42
47
|
- db/migrate/20120313191745_create_copycat_translations.rb
|
48
|
+
- lib/copycat.rb
|
49
|
+
- lib/tasks/copycat_tasks.rake
|
43
50
|
- lib/copycat/engine.rb
|
44
|
-
- lib/copycat/implementation.rb
|
45
|
-
- lib/copycat/routes.rb
|
46
51
|
- lib/copycat/simple.rb
|
52
|
+
- lib/copycat/routes.rb
|
47
53
|
- lib/copycat/version.rb
|
48
|
-
- lib/copycat.rb
|
49
|
-
- lib/tasks/copycat_tasks.rake
|
54
|
+
- lib/copycat/implementation.rb
|
50
55
|
- MIT-LICENSE
|
51
56
|
- Rakefile
|
52
57
|
- README.md
|
53
|
-
- spec/dummy/
|
54
|
-
- spec/dummy/
|
55
|
-
- spec/dummy/app/controllers/application_controller.rb
|
56
|
-
- spec/dummy/app/controllers/site_controller.rb
|
57
|
-
- spec/dummy/app/helpers/application_helper.rb
|
58
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
59
|
-
- spec/dummy/app/views/site/index.html.erb
|
58
|
+
- spec/dummy/Rakefile
|
59
|
+
- spec/dummy/config/environment.rb
|
60
60
|
- spec/dummy/config/application.rb
|
61
|
-
- spec/dummy/config/boot.rb
|
62
61
|
- spec/dummy/config/database.yml
|
63
|
-
- spec/dummy/config/environment.rb
|
64
62
|
- spec/dummy/config/environments/development.rb
|
65
|
-
- spec/dummy/config/environments/production.rb
|
66
63
|
- spec/dummy/config/environments/test.rb
|
64
|
+
- spec/dummy/config/environments/production.rb
|
65
|
+
- spec/dummy/config/boot.rb
|
66
|
+
- spec/dummy/config/locales/en.yml
|
67
67
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
68
|
-
- spec/dummy/config/initializers/copycat.rb
|
69
|
-
- spec/dummy/config/initializers/inflections.rb
|
70
68
|
- spec/dummy/config/initializers/mime_types.rb
|
69
|
+
- spec/dummy/config/initializers/inflections.rb
|
71
70
|
- spec/dummy/config/initializers/secret_token.rb
|
72
71
|
- spec/dummy/config/initializers/session_store.rb
|
72
|
+
- spec/dummy/config/initializers/copycat.rb
|
73
73
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
74
|
-
- spec/dummy/config/locales/en.yml
|
75
74
|
- spec/dummy/config/routes.rb
|
75
|
+
- spec/dummy/script/rails
|
76
76
|
- spec/dummy/config.ru
|
77
|
-
- spec/dummy/db/development.sqlite3
|
78
|
-
- spec/dummy/db/migrate/20120320194234_create_copycat_translations.copycat_engine.rb
|
79
|
-
- spec/dummy/db/schema.rb
|
80
|
-
- spec/dummy/db/test.sqlite3
|
81
|
-
- spec/dummy/log/development.log
|
82
77
|
- spec/dummy/log/test.log
|
83
|
-
- spec/dummy/
|
78
|
+
- spec/dummy/log/development.log
|
79
|
+
- spec/dummy/db/test.sqlite3
|
80
|
+
- spec/dummy/db/schema.rb
|
81
|
+
- spec/dummy/db/migrate/20120407193855_create_copycat_translations.copycat_engine.rb
|
82
|
+
- spec/dummy/db/development.sqlite3
|
84
83
|
- spec/dummy/public/422.html
|
85
84
|
- spec/dummy/public/500.html
|
85
|
+
- spec/dummy/public/404.html
|
86
86
|
- spec/dummy/public/favicon.ico
|
87
|
-
- spec/dummy/
|
88
|
-
- spec/dummy/
|
89
|
-
- spec/dummy/
|
90
|
-
- spec/dummy/
|
91
|
-
- spec/dummy/
|
92
|
-
- spec/dummy/
|
93
|
-
- spec/dummy/
|
94
|
-
- spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
95
|
-
- spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
96
|
-
- spec/dummy/tmp/cache/assets/DA4/EE0/sprockets%2Fcd39e3d56788faea331e0f5bac67329b
|
97
|
-
- spec/dummy/tmp/cache/assets/DBD/220/sprockets%2F0cbff5c1a349439c1c444cbb4a57acc4
|
98
|
-
- spec/dummy/tmp/cache/assets/DDD/780/sprockets%2Fe7880b84c3ecb507fabc99b9ef6b70e3
|
99
|
-
- spec/dummy/tmp/cache/assets/DF8/310/sprockets%2Fccb12c4009c2f876d51dee8bae4c64ec
|
100
|
-
- spec/factories/copycat_translations.rb
|
101
|
-
- spec/integration/copycat_spec.rb
|
102
|
-
- spec/integration/dummy_spec.rb
|
87
|
+
- spec/dummy/app/helpers/application_helper.rb
|
88
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
89
|
+
- spec/dummy/app/assets/javascripts/application.js
|
90
|
+
- spec/dummy/app/views/site/index.html.erb
|
91
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
92
|
+
- spec/dummy/app/controllers/application_controller.rb
|
93
|
+
- spec/dummy/app/controllers/site_controller.rb
|
103
94
|
- spec/lib/copycat_spec.rb
|
104
95
|
- spec/models/copycat_translation_spec.rb
|
96
|
+
- spec/integration/copycat_spec.rb
|
97
|
+
- spec/integration/dummy_spec.rb
|
105
98
|
- spec/spec_helper.rb
|
99
|
+
- spec/factories/copycat_translations.rb
|
106
100
|
homepage: https://github.com/Vermonster/copycat
|
107
101
|
licenses: []
|
108
102
|
post_install_message:
|
@@ -123,61 +117,50 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
117
|
version: '0'
|
124
118
|
requirements: []
|
125
119
|
rubyforge_project:
|
126
|
-
rubygems_version: 1.8.
|
120
|
+
rubygems_version: 1.8.21
|
127
121
|
signing_key:
|
128
122
|
specification_version: 3
|
129
123
|
summary: Rails engine for editing live website copy.
|
130
124
|
test_files:
|
131
|
-
- spec/dummy/
|
132
|
-
- spec/dummy/
|
133
|
-
- spec/dummy/app/controllers/application_controller.rb
|
134
|
-
- spec/dummy/app/controllers/site_controller.rb
|
135
|
-
- spec/dummy/app/helpers/application_helper.rb
|
136
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
137
|
-
- spec/dummy/app/views/site/index.html.erb
|
125
|
+
- spec/dummy/Rakefile
|
126
|
+
- spec/dummy/config/environment.rb
|
138
127
|
- spec/dummy/config/application.rb
|
139
|
-
- spec/dummy/config/boot.rb
|
140
128
|
- spec/dummy/config/database.yml
|
141
|
-
- spec/dummy/config/environment.rb
|
142
129
|
- spec/dummy/config/environments/development.rb
|
143
|
-
- spec/dummy/config/environments/production.rb
|
144
130
|
- spec/dummy/config/environments/test.rb
|
131
|
+
- spec/dummy/config/environments/production.rb
|
132
|
+
- spec/dummy/config/boot.rb
|
133
|
+
- spec/dummy/config/locales/en.yml
|
145
134
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
146
|
-
- spec/dummy/config/initializers/copycat.rb
|
147
|
-
- spec/dummy/config/initializers/inflections.rb
|
148
135
|
- spec/dummy/config/initializers/mime_types.rb
|
136
|
+
- spec/dummy/config/initializers/inflections.rb
|
149
137
|
- spec/dummy/config/initializers/secret_token.rb
|
150
138
|
- spec/dummy/config/initializers/session_store.rb
|
139
|
+
- spec/dummy/config/initializers/copycat.rb
|
151
140
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
152
|
-
- spec/dummy/config/locales/en.yml
|
153
141
|
- spec/dummy/config/routes.rb
|
142
|
+
- spec/dummy/script/rails
|
154
143
|
- spec/dummy/config.ru
|
155
|
-
- spec/dummy/db/development.sqlite3
|
156
|
-
- spec/dummy/db/migrate/20120320194234_create_copycat_translations.copycat_engine.rb
|
157
|
-
- spec/dummy/db/schema.rb
|
158
|
-
- spec/dummy/db/test.sqlite3
|
159
|
-
- spec/dummy/log/development.log
|
160
144
|
- spec/dummy/log/test.log
|
161
|
-
- spec/dummy/
|
145
|
+
- spec/dummy/log/development.log
|
146
|
+
- spec/dummy/db/test.sqlite3
|
147
|
+
- spec/dummy/db/schema.rb
|
148
|
+
- spec/dummy/db/migrate/20120407193855_create_copycat_translations.copycat_engine.rb
|
149
|
+
- spec/dummy/db/development.sqlite3
|
162
150
|
- spec/dummy/public/422.html
|
163
151
|
- spec/dummy/public/500.html
|
152
|
+
- spec/dummy/public/404.html
|
164
153
|
- spec/dummy/public/favicon.ico
|
165
|
-
- spec/dummy/
|
166
|
-
- spec/dummy/
|
167
|
-
- spec/dummy/
|
168
|
-
- spec/dummy/
|
169
|
-
- spec/dummy/
|
170
|
-
- spec/dummy/
|
171
|
-
- spec/dummy/
|
172
|
-
- spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
173
|
-
- spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
174
|
-
- spec/dummy/tmp/cache/assets/DA4/EE0/sprockets%2Fcd39e3d56788faea331e0f5bac67329b
|
175
|
-
- spec/dummy/tmp/cache/assets/DBD/220/sprockets%2F0cbff5c1a349439c1c444cbb4a57acc4
|
176
|
-
- spec/dummy/tmp/cache/assets/DDD/780/sprockets%2Fe7880b84c3ecb507fabc99b9ef6b70e3
|
177
|
-
- spec/dummy/tmp/cache/assets/DF8/310/sprockets%2Fccb12c4009c2f876d51dee8bae4c64ec
|
178
|
-
- spec/factories/copycat_translations.rb
|
179
|
-
- spec/integration/copycat_spec.rb
|
180
|
-
- spec/integration/dummy_spec.rb
|
154
|
+
- spec/dummy/app/helpers/application_helper.rb
|
155
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
156
|
+
- spec/dummy/app/assets/javascripts/application.js
|
157
|
+
- spec/dummy/app/views/site/index.html.erb
|
158
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
159
|
+
- spec/dummy/app/controllers/application_controller.rb
|
160
|
+
- spec/dummy/app/controllers/site_controller.rb
|
181
161
|
- spec/lib/copycat_spec.rb
|
182
162
|
- spec/models/copycat_translation_spec.rb
|
163
|
+
- spec/integration/copycat_spec.rb
|
164
|
+
- spec/integration/dummy_spec.rb
|
183
165
|
- spec/spec_helper.rb
|
166
|
+
- spec/factories/copycat_translations.rb
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|