rails_i18n_record 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +45 -0
  3. data/Rakefile +38 -0
  4. data/lib/generators/i18n_generator.rb +26 -0
  5. data/lib/generators/templates/migration.erb +19 -0
  6. data/lib/generators/templates/model.erb +13 -0
  7. data/lib/rails_i18n_record/base.rb +77 -0
  8. data/lib/rails_i18n_record/railtie.rb +9 -0
  9. data/lib/rails_i18n_record/version.rb +5 -0
  10. data/lib/rails_i18n_record.rb +6 -0
  11. data/test/dummy/README.rdoc +261 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +15 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  15. data/test/dummy/app/controllers/application_controller.rb +3 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/models/model.rb +4 -0
  18. data/test/dummy/app/models/model_translation.rb +13 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/config/application.rb +59 -0
  21. data/test/dummy/config/boot.rb +10 -0
  22. data/test/dummy/config/database.yml +25 -0
  23. data/test/dummy/config/environment.rb +5 -0
  24. data/test/dummy/config/environments/development.rb +37 -0
  25. data/test/dummy/config/environments/production.rb +67 -0
  26. data/test/dummy/config/environments/test.rb +37 -0
  27. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  28. data/test/dummy/config/initializers/inflections.rb +15 -0
  29. data/test/dummy/config/initializers/mime_types.rb +5 -0
  30. data/test/dummy/config/initializers/secret_token.rb +7 -0
  31. data/test/dummy/config/initializers/session_store.rb +8 -0
  32. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/test/dummy/config/locales/en.yml +5 -0
  34. data/test/dummy/config/routes.rb +58 -0
  35. data/test/dummy/config.ru +4 -0
  36. data/test/dummy/db/development.sqlite3 +0 -0
  37. data/test/dummy/db/migrate/20120831205714_create_models.rb +7 -0
  38. data/test/dummy/db/migrate/20130404161713_create_models_i18n.rb +19 -0
  39. data/test/dummy/db/schema.rb +35 -0
  40. data/test/dummy/db/test.sqlite3 +0 -0
  41. data/test/dummy/log/development.log +499 -0
  42. data/test/dummy/log/test.log +2296 -0
  43. data/test/dummy/public/404.html +26 -0
  44. data/test/dummy/public/422.html +26 -0
  45. data/test/dummy/public/500.html +25 -0
  46. data/test/dummy/public/favicon.ico +0 -0
  47. data/test/dummy/script/rails +6 -0
  48. data/test/generators_test.rb +24 -0
  49. data/test/rails_i18n_record_test.rb +9 -0
  50. data/test/records_test.rb +27 -0
  51. data/test/test_helper.rb +21 -0
  52. metadata +170 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,24 @@
1
+ require 'test_helper'
2
+ require 'rails/generators'
3
+ require 'generators/i18n_generator'
4
+
5
+ class I18nGeneratorTest < Rails::Generators::TestCase
6
+
7
+ setup :clean
8
+
9
+ tests I18nGenerator
10
+ destination File.expand_path('../tmp', File.dirname(__FILE__))
11
+
12
+ test 'should exists' do
13
+ run_generator %w(something)
14
+ assert_file 'app/models/something_translation.rb'
15
+ assert_migration 'db/migrate/create_somethings_i18n.rb'
16
+ end
17
+
18
+ protected
19
+
20
+ def clean
21
+ FileUtils.rm_rf(self.destination_root)
22
+ end
23
+
24
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class RailsI18nRecordTest < ActiveSupport::TestCase
4
+
5
+ test 'truth' do
6
+ assert_kind_of Module, RailsI18nRecord
7
+ end
8
+
9
+ end
@@ -0,0 +1,27 @@
1
+ require 'test_helper'
2
+
3
+ class RecrodsTest < ActiveSupport::TestCase
4
+
5
+ setup :create_record
6
+
7
+ test 'should create associated translation' do
8
+ assert_equal @record.name, 'name'
9
+ end
10
+
11
+ test 'should edit associated translation' do
12
+ @record.update_attributes :name => 'new name'
13
+ assert_equal @record.name, 'new name'
14
+ end
15
+
16
+ test 'should delete associated translation' do
17
+ @record.destroy
18
+ assert_equal ModelTranslation.find_by_model_id(@record.id), nil
19
+ end
20
+
21
+ protected
22
+
23
+ def create_record
24
+ @record = Model.create(:name => 'name')
25
+ end
26
+
27
+ end
@@ -0,0 +1,21 @@
1
+ # Configure Rails Environment
2
+ ENV['RAILS_ENV'] = 'test'
3
+
4
+ require File.expand_path('../dummy/config/environment.rb', __FILE__)
5
+ require 'rails/test_help'
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path('../fixtures', __FILE__)
15
+ end
16
+
17
+ # Load database
18
+ config = YAML::load(File.read(File.expand_path('../dummy/config/database.yml', __FILE__)))
19
+ config['test']['adapter'] = 'jdbcsqlite3' if RUBY_PLATFORM == 'java'
20
+ ActiveRecord::Base.establish_connection(config['test'])
21
+ load(File.expand_path('../dummy/db/schema.rb', __FILE__))
metadata ADDED
@@ -0,0 +1,170 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_i18n_record
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.4
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Mattways
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-04-05 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.8
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.8
30
+ - !ruby/object:Gem::Dependency
31
+ name: sqlite3
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
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'
46
+ description: Adds models, migrations and handy methods to ActiveRecord to deal with
47
+ translations.
48
+ email:
49
+ - contact@mattways.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - lib/generators/i18n_generator.rb
55
+ - lib/generators/templates/migration.erb
56
+ - lib/generators/templates/model.erb
57
+ - lib/rails_i18n_record/base.rb
58
+ - lib/rails_i18n_record/railtie.rb
59
+ - lib/rails_i18n_record/version.rb
60
+ - lib/rails_i18n_record.rb
61
+ - MIT-LICENSE
62
+ - Rakefile
63
+ - README.rdoc
64
+ - test/dummy/app/assets/javascripts/application.js
65
+ - test/dummy/app/assets/stylesheets/application.css
66
+ - test/dummy/app/controllers/application_controller.rb
67
+ - test/dummy/app/helpers/application_helper.rb
68
+ - test/dummy/app/models/model.rb
69
+ - test/dummy/app/models/model_translation.rb
70
+ - test/dummy/app/views/layouts/application.html.erb
71
+ - test/dummy/config/application.rb
72
+ - test/dummy/config/boot.rb
73
+ - test/dummy/config/database.yml
74
+ - test/dummy/config/environment.rb
75
+ - test/dummy/config/environments/development.rb
76
+ - test/dummy/config/environments/production.rb
77
+ - test/dummy/config/environments/test.rb
78
+ - test/dummy/config/initializers/backtrace_silencers.rb
79
+ - test/dummy/config/initializers/inflections.rb
80
+ - test/dummy/config/initializers/mime_types.rb
81
+ - test/dummy/config/initializers/secret_token.rb
82
+ - test/dummy/config/initializers/session_store.rb
83
+ - test/dummy/config/initializers/wrap_parameters.rb
84
+ - test/dummy/config/locales/en.yml
85
+ - test/dummy/config/routes.rb
86
+ - test/dummy/config.ru
87
+ - test/dummy/db/development.sqlite3
88
+ - test/dummy/db/migrate/20120831205714_create_models.rb
89
+ - test/dummy/db/migrate/20130404161713_create_models_i18n.rb
90
+ - test/dummy/db/schema.rb
91
+ - test/dummy/db/test.sqlite3
92
+ - test/dummy/log/development.log
93
+ - test/dummy/log/test.log
94
+ - test/dummy/public/404.html
95
+ - test/dummy/public/422.html
96
+ - test/dummy/public/500.html
97
+ - test/dummy/public/favicon.ico
98
+ - test/dummy/Rakefile
99
+ - test/dummy/README.rdoc
100
+ - test/dummy/script/rails
101
+ - test/generators_test.rb
102
+ - test/rails_i18n_record_test.rb
103
+ - test/records_test.rb
104
+ - test/test_helper.rb
105
+ homepage: https://github.com/mattways/rails_i18n_record
106
+ licenses: []
107
+ post_install_message:
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ none: false
113
+ requirements:
114
+ - - ! '>='
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ! '>='
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ requirements: []
124
+ rubyforge_project:
125
+ rubygems_version: 1.8.23
126
+ signing_key:
127
+ specification_version: 3
128
+ summary: Toolkit for Rails translatable records.
129
+ test_files:
130
+ - test/dummy/app/assets/javascripts/application.js
131
+ - test/dummy/app/assets/stylesheets/application.css
132
+ - test/dummy/app/controllers/application_controller.rb
133
+ - test/dummy/app/helpers/application_helper.rb
134
+ - test/dummy/app/models/model.rb
135
+ - test/dummy/app/models/model_translation.rb
136
+ - test/dummy/app/views/layouts/application.html.erb
137
+ - test/dummy/config/application.rb
138
+ - test/dummy/config/boot.rb
139
+ - test/dummy/config/database.yml
140
+ - test/dummy/config/environment.rb
141
+ - test/dummy/config/environments/development.rb
142
+ - test/dummy/config/environments/production.rb
143
+ - test/dummy/config/environments/test.rb
144
+ - test/dummy/config/initializers/backtrace_silencers.rb
145
+ - test/dummy/config/initializers/inflections.rb
146
+ - test/dummy/config/initializers/mime_types.rb
147
+ - test/dummy/config/initializers/secret_token.rb
148
+ - test/dummy/config/initializers/session_store.rb
149
+ - test/dummy/config/initializers/wrap_parameters.rb
150
+ - test/dummy/config/locales/en.yml
151
+ - test/dummy/config/routes.rb
152
+ - test/dummy/config.ru
153
+ - test/dummy/db/development.sqlite3
154
+ - test/dummy/db/migrate/20120831205714_create_models.rb
155
+ - test/dummy/db/migrate/20130404161713_create_models_i18n.rb
156
+ - test/dummy/db/schema.rb
157
+ - test/dummy/db/test.sqlite3
158
+ - test/dummy/log/development.log
159
+ - test/dummy/log/test.log
160
+ - test/dummy/public/404.html
161
+ - test/dummy/public/422.html
162
+ - test/dummy/public/500.html
163
+ - test/dummy/public/favicon.ico
164
+ - test/dummy/Rakefile
165
+ - test/dummy/README.rdoc
166
+ - test/dummy/script/rails
167
+ - test/generators_test.rb
168
+ - test/rails_i18n_record_test.rb
169
+ - test/records_test.rb
170
+ - test/test_helper.rb