traco 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/.gitignore +8 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/Guardfile +6 -0
- data/README.markdown +97 -0
- data/Rakefile +13 -0
- data/lib/traco.rb +4 -0
- data/lib/traco/class_methods.rb +31 -0
- data/lib/traco/instance_methods.rb +30 -0
- data/lib/traco/translates.rb +26 -0
- data/lib/traco/version.rb +3 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +9 -0
- data/spec/dummy/app/assets/stylesheets/application.css +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.gitkeep +0 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/app/models/post.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +45 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +30 -0
- data/spec/dummy/config/environments/production.rb +60 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/locales/sv.yml +7 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/db/migrate/20120316101201_create_posts.rb +15 -0
- data/spec/dummy/db/schema.rb +28 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/test/fixtures/posts.yml +15 -0
- data/spec/dummy/test/unit/post_test.rb +7 -0
- data/spec/spec_helper.rb +21 -0
- data/spec/traco_spec.rb +126 -0
- data/traco.gemspec +26 -0
- metadata +190 -0
data/.gitignore
ADDED
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm ruby-1.9.3-p0@traco --create
|
data/Gemfile
ADDED
data/Guardfile
ADDED
data/README.markdown
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
# Traco
|
2
|
+
|
3
|
+
Translatable columns for Rails 3, stored in the model table itself.
|
4
|
+
|
5
|
+
Inspired by Iain Hecker's [translatable_columns](https://github.com/iain/translatable_columns/).
|
6
|
+
|
7
|
+
To store translations outside the model, see Sven Fuchs' [globalize3](https://github.com/svenfuchs/globalize3).
|
8
|
+
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
Add this to your `Gemfile` if you use Bundler 1.1+:
|
13
|
+
|
14
|
+
gem 'traco', github: 'barsoom/traco'
|
15
|
+
|
16
|
+
Or with an earlier version of Bundler:
|
17
|
+
|
18
|
+
gem 'traco', git: 'git://github.com/barsoom/traco.git'
|
19
|
+
|
20
|
+
Then run
|
21
|
+
|
22
|
+
bundle
|
23
|
+
|
24
|
+
to install it.
|
25
|
+
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
The columns to translate should exist in the database with locale suffixes, e.g. `title_sv` and `title_en`.
|
30
|
+
|
31
|
+
Declare these columns in the model:
|
32
|
+
|
33
|
+
class Post < ActiveRecord::Base
|
34
|
+
translates :title, :body
|
35
|
+
end
|
36
|
+
|
37
|
+
You can still use the `title_sv` accessors in forms and other code, but you also get:
|
38
|
+
|
39
|
+
`#title`: Show the title in the current locale. If blank, fall back to default locale, then to any locale.
|
40
|
+
|
41
|
+
`#title=`: Assign the title to the column for the current locale, if present. Raise if the column doesn't exist.
|
42
|
+
|
43
|
+
`.human_attribute_name(:title_sv)`: Returns "Title (Swedish)" if you have a translation key `i18n.languages.sv = "Swedish"` and "Title (SV)" otherwise.
|
44
|
+
|
45
|
+
`.locales_for_column(:title)`: Returns an array like `[:sv, :en]` sorted with default locale first and then alphabetically. Suitable for looping in forms.
|
46
|
+
|
47
|
+
And the equivalent methods for `body`, of course.
|
48
|
+
|
49
|
+
Note that ActiveRecord validations check against the reader method, so if you validate for presence of `title`, it will check in the current locale.
|
50
|
+
You can validate against the localized columns like `title_sv` if you want.
|
51
|
+
|
52
|
+
|
53
|
+
## Running the tests
|
54
|
+
|
55
|
+
bundle
|
56
|
+
rake # or guard
|
57
|
+
|
58
|
+
<!-- Keeping this a hidden brain dump for now.
|
59
|
+
|
60
|
+
## TODO
|
61
|
+
|
62
|
+
We've intentionally kept this simple with no features we do not need.
|
63
|
+
We'd be happy to merge additional features that others contribute.
|
64
|
+
|
65
|
+
Possible improvements to make:
|
66
|
+
|
67
|
+
* Validation that checks that at least one translation for a column exists.
|
68
|
+
* Validation that checks that every translation for a column exists.
|
69
|
+
* Option to disable fallback.
|
70
|
+
* Scopes like `translated`, `translated_to(locale)`.
|
71
|
+
* Support for region locales, like `en-US` and `en-GB`.
|
72
|
+
|
73
|
+
-->
|
74
|
+
|
75
|
+
## Credits and license
|
76
|
+
|
77
|
+
By [Barsoom](http://barsoom.se) under the MIT license:
|
78
|
+
|
79
|
+
> Copyright (c) 2012 Barsoom AB
|
80
|
+
>
|
81
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
82
|
+
> of this software and associated documentation files (the "Software"), to deal
|
83
|
+
> in the Software without restriction, including without limitation the rights
|
84
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
85
|
+
> copies of the Software, and to permit persons to whom the Software is
|
86
|
+
> furnished to do so, subject to the following conditions:
|
87
|
+
>
|
88
|
+
> The above copyright notice and this permission notice shall be included in
|
89
|
+
> all copies or substantial portions of the Software.
|
90
|
+
>
|
91
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
92
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
93
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
94
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
95
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
96
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
97
|
+
> THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rspec/core/rake_task"
|
3
|
+
|
4
|
+
RSpec::Core::RakeTask.new(:spec)
|
5
|
+
|
6
|
+
task :prepare do
|
7
|
+
unless File.exists?("spec/dummy/db/test.sqlite3")
|
8
|
+
puts "Setting up sqlite test database..."
|
9
|
+
system("cd spec/dummy; rake db:migrate db:test:prepare") || exit(1)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
task :default => [ :prepare, :spec ]
|
data/lib/traco.rb
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
module Traco
|
2
|
+
module ClassMethods
|
3
|
+
|
4
|
+
def locales_for_column(column)
|
5
|
+
column_names.grep(/\A#{column}_([a-z]{2})\z/) {
|
6
|
+
$1.to_sym
|
7
|
+
}.sort_by { |x|
|
8
|
+
x == I18n.default_locale ? :"" : x
|
9
|
+
}
|
10
|
+
end
|
11
|
+
|
12
|
+
def human_attribute_name(attribute, options={})
|
13
|
+
default = super(attribute, { default: "" }.merge(options))
|
14
|
+
if !default.present? && attribute.to_s.match(/\A(\w+)_([a-z]{2})\z/)
|
15
|
+
column, locale = $1, $2.to_sym
|
16
|
+
if translates?(column)
|
17
|
+
locale_name = I18n.t(locale, scope: :"i18n.languages", default: locale.to_s.upcase)
|
18
|
+
return "#{super(column, options)} (#{locale_name})"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
super
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def translates?(column)
|
27
|
+
@translates_columns.include?(column.to_sym)
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Traco
|
2
|
+
module InstanceMethods
|
3
|
+
|
4
|
+
private
|
5
|
+
|
6
|
+
def read_localized_value(column)
|
7
|
+
locales_for_reading_column(column).each do |locale|
|
8
|
+
value = public_send("#{column}_#{locale}")
|
9
|
+
value = public_send("#{column}_#{locale}")
|
10
|
+
return value if value.present?
|
11
|
+
end
|
12
|
+
nil
|
13
|
+
end
|
14
|
+
|
15
|
+
def write_localized_value(column, value)
|
16
|
+
public_send("#{column}_#{I18n.locale}=", value)
|
17
|
+
end
|
18
|
+
|
19
|
+
def locales_for_reading_column(column)
|
20
|
+
self.class.locales_for_column(column).sort_by { |x|
|
21
|
+
case x
|
22
|
+
when I18n.locale then :"0"
|
23
|
+
when I18n.default_locale then :"1"
|
24
|
+
else x
|
25
|
+
end
|
26
|
+
}
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module Traco
|
2
|
+
module Translates
|
3
|
+
def translates(*columns)
|
4
|
+
|
5
|
+
@translates_columns ||= []
|
6
|
+
@translates_columns |= columns.map(&:to_sym)
|
7
|
+
|
8
|
+
extend Traco::ClassMethods
|
9
|
+
include Traco::InstanceMethods
|
10
|
+
|
11
|
+
columns.each do |column|
|
12
|
+
|
13
|
+
define_method(column) do
|
14
|
+
read_localized_value(column)
|
15
|
+
end
|
16
|
+
|
17
|
+
define_method("#{column}=") do |value|
|
18
|
+
write_localized_value(column, value)
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
ActiveRecord::Base.send :extend, Traco::Translates
|
data/spec/dummy/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
3
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
|
+
|
5
|
+
require File.expand_path('../config/application', __FILE__)
|
6
|
+
|
7
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,9 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into including all the files listed below.
|
2
|
+
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
|
3
|
+
// be included in the compiled file accessible from http://example.com/assets/application.js
|
4
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
5
|
+
// the compiled file.
|
6
|
+
//
|
7
|
+
//= require jquery
|
8
|
+
//= require jquery_ujs
|
9
|
+
//= require_tree .
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll automatically include all the stylesheets available in this directory
|
3
|
+
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
|
4
|
+
* the top of the compiled file, but it's generally better to create a new file per style scope.
|
5
|
+
*= require_self
|
6
|
+
*= require_tree .
|
7
|
+
*/
|
File without changes
|
File without changes
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
Bundler.require
|
6
|
+
require "traco"
|
7
|
+
|
8
|
+
module Dummy
|
9
|
+
class Application < Rails::Application
|
10
|
+
# Settings in config/environments/* take precedence over those specified here.
|
11
|
+
# Application configuration should go into files in config/initializers
|
12
|
+
# -- all .rb files in that directory are automatically loaded.
|
13
|
+
|
14
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
15
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
16
|
+
|
17
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
18
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
19
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
20
|
+
|
21
|
+
# Activate observers that should always be running.
|
22
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
23
|
+
|
24
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
25
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
26
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
27
|
+
|
28
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
29
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
30
|
+
# config.i18n.default_locale = :de
|
31
|
+
|
32
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
33
|
+
config.encoding = "utf-8"
|
34
|
+
|
35
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
36
|
+
config.filter_parameters += [:password]
|
37
|
+
|
38
|
+
# Enable the asset pipeline
|
39
|
+
config.assets.enabled = true
|
40
|
+
|
41
|
+
# Version of your assets, change this if you want to expire all your assets
|
42
|
+
config.assets.version = '1.0'
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
development:
|
7
|
+
adapter: sqlite3
|
8
|
+
database: db/development.sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
13
|
+
# re-generated from your development database when you run "rake".
|
14
|
+
# Do not set this db to the same as development or production.
|
15
|
+
test:
|
16
|
+
adapter: sqlite3
|
17
|
+
database: db/test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
20
|
+
|
21
|
+
production:
|
22
|
+
adapter: sqlite3
|
23
|
+
database: db/production.sqlite3
|
24
|
+
pool: 5
|
25
|
+
timeout: 5000
|
@@ -0,0 +1,30 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Only use best-standards-support built into browsers
|
23
|
+
config.action_dispatch.best_standards_support = :builtin
|
24
|
+
|
25
|
+
# Do not compress assets
|
26
|
+
config.assets.compress = false
|
27
|
+
|
28
|
+
# Expands the lines which load the assets
|
29
|
+
config.assets.debug = true
|
30
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# Code is not reloaded between requests
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Full error reports are disabled and caching is turned on
|
8
|
+
config.consider_all_requests_local = false
|
9
|
+
config.action_controller.perform_caching = true
|
10
|
+
|
11
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
12
|
+
config.serve_static_assets = false
|
13
|
+
|
14
|
+
# Compress JavaScripts and CSS
|
15
|
+
config.assets.compress = true
|
16
|
+
|
17
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
18
|
+
config.assets.compile = false
|
19
|
+
|
20
|
+
# Generate digests for assets URLs
|
21
|
+
config.assets.digest = true
|
22
|
+
|
23
|
+
# Defaults to Rails.root.join("public/assets")
|
24
|
+
# config.assets.manifest = YOUR_PATH
|
25
|
+
|
26
|
+
# Specifies the header that your server uses for sending files
|
27
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
|
+
|
30
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
+
# config.force_ssl = true
|
32
|
+
|
33
|
+
# See everything in the log (default is :info)
|
34
|
+
# config.log_level = :debug
|
35
|
+
|
36
|
+
# Use a different logger for distributed setups
|
37
|
+
# config.logger = SyslogLogger.new
|
38
|
+
|
39
|
+
# Use a different cache store in production
|
40
|
+
# config.cache_store = :mem_cache_store
|
41
|
+
|
42
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
43
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
44
|
+
|
45
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
46
|
+
# config.assets.precompile += %w( search.js )
|
47
|
+
|
48
|
+
# Disable delivery errors, bad email addresses will be ignored
|
49
|
+
# config.action_mailer.raise_delivery_errors = false
|
50
|
+
|
51
|
+
# Enable threaded mode
|
52
|
+
# config.threadsafe!
|
53
|
+
|
54
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
55
|
+
# the I18n.default_locale when a translation can not be found)
|
56
|
+
config.i18n.fallbacks = true
|
57
|
+
|
58
|
+
# Send deprecation notices to registered listeners
|
59
|
+
config.active_support.deprecation = :notify
|
60
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
11
|
+
config.serve_static_assets = true
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = false
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
32
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
33
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
34
|
+
# like if you have constraints or database-specific column types
|
35
|
+
# config.active_record.schema_format = :sql
|
36
|
+
|
37
|
+
# Print deprecation notices to the stderr
|
38
|
+
config.active_support.deprecation = :stderr
|
39
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = 'fabbcf4d0ec8dbd4ea04a832a71de39cc0ec39eec74ebcac1f266e8cd91b501011d07e13cfbe9469c336d8a9594c36ea57060ac6f7e6ff4b62b5a9938e192f44'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
# The priority is based upon order of creation:
|
3
|
+
# first created -> highest priority.
|
4
|
+
|
5
|
+
# Sample of regular route:
|
6
|
+
# match 'products/:id' => 'catalog#view'
|
7
|
+
# Keep in mind you can assign values other than :controller and :action
|
8
|
+
|
9
|
+
# Sample of named route:
|
10
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
11
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
12
|
+
|
13
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
14
|
+
# resources :products
|
15
|
+
|
16
|
+
# Sample resource route with options:
|
17
|
+
# resources :products do
|
18
|
+
# member do
|
19
|
+
# get 'short'
|
20
|
+
# post 'toggle'
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# collection do
|
24
|
+
# get 'sold'
|
25
|
+
# end
|
26
|
+
# end
|
27
|
+
|
28
|
+
# Sample resource route with sub-resources:
|
29
|
+
# resources :products do
|
30
|
+
# resources :comments, :sales
|
31
|
+
# resource :seller
|
32
|
+
# end
|
33
|
+
|
34
|
+
# Sample resource route with more complex sub-resources
|
35
|
+
# resources :products do
|
36
|
+
# resources :comments
|
37
|
+
# resources :sales do
|
38
|
+
# get 'recent', :on => :collection
|
39
|
+
# end
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Sample resource route within a namespace:
|
43
|
+
# namespace :admin do
|
44
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
45
|
+
# # (app/controllers/admin/products_controller.rb)
|
46
|
+
# resources :products
|
47
|
+
# end
|
48
|
+
|
49
|
+
# You can have the root of your site routed with "root"
|
50
|
+
# just remember to delete public/index.html.
|
51
|
+
# root :to => 'welcome#index'
|
52
|
+
|
53
|
+
# See how all your routes lay out with "rake routes"
|
54
|
+
|
55
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
56
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
57
|
+
# match ':controller(/:action(/:id(.:format)))'
|
58
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class CreatePosts < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :posts do |t|
|
4
|
+
t.string :title_sv
|
5
|
+
t.string :title_en
|
6
|
+
t.string :title_fi
|
7
|
+
t.text :body_sv
|
8
|
+
t.text :body_en
|
9
|
+
t.text :body_fi
|
10
|
+
t.string :slug
|
11
|
+
|
12
|
+
t.timestamps
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20120316101201) do
|
15
|
+
|
16
|
+
create_table "posts", :force => true do |t|
|
17
|
+
t.string "title_sv"
|
18
|
+
t.string "title_en"
|
19
|
+
t.string "title_fi"
|
20
|
+
t.text "body_sv"
|
21
|
+
t.text "body_en"
|
22
|
+
t.text "body_fi"
|
23
|
+
t.string "slug"
|
24
|
+
t.datetime "created_at", :null => false
|
25
|
+
t.datetime "updated_at", :null => false
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
File without changes
|
File without changes
|
@@ -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,26 @@
|
|
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
|
+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</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,15 @@
|
|
1
|
+
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
2
|
+
|
3
|
+
one:
|
4
|
+
title_sv: MyString
|
5
|
+
title_en: MyString
|
6
|
+
body_sv: MyText
|
7
|
+
body_en: MyText
|
8
|
+
slug: MyString
|
9
|
+
|
10
|
+
two:
|
11
|
+
title_sv: MyString
|
12
|
+
title_en: MyString
|
13
|
+
body_sv: MyText
|
14
|
+
body_en: MyText
|
15
|
+
slug: MyString
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
RSpec.configure do |config|
|
2
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
3
|
+
config.filter_run :focus => true
|
4
|
+
config.run_all_when_everything_filtered = true
|
5
|
+
|
6
|
+
# Clear class state before each spec.
|
7
|
+
config.before(:each) do
|
8
|
+
Object.send(:remove_const, 'Post')
|
9
|
+
load 'dummy/app/models/post.rb'
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
13
|
+
|
14
|
+
# Rails
|
15
|
+
|
16
|
+
ENV["RAILS_ENV"] = "test"
|
17
|
+
|
18
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
19
|
+
require "rails/test_help"
|
20
|
+
|
21
|
+
Rails.backtrace_cleaner.remove_silencers!
|
data/spec/traco_spec.rb
ADDED
@@ -0,0 +1,126 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
require "traco"
|
3
|
+
|
4
|
+
# See spec/dummy for the Rails app that has the Post model.
|
5
|
+
# http://guides.rubyonrails.org/plugins.html#add-an-acts_as-method-to-active-record
|
6
|
+
|
7
|
+
describe ActiveRecord::Base, ".translates" do
|
8
|
+
|
9
|
+
it "should be available" do
|
10
|
+
Post.should respond_to :translates
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should add functionality" do
|
14
|
+
Post.new.should_not respond_to :title
|
15
|
+
Post.translates :title, :description
|
16
|
+
Post.new.should respond_to :title
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
describe Post, ".locales_for_column" do
|
22
|
+
|
23
|
+
before do
|
24
|
+
Post.translates :title
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should list the locales, default first and then alphabetically" do
|
28
|
+
I18n.default_locale = :fi
|
29
|
+
Post.locales_for_column(:title).should == [
|
30
|
+
:fi, :en, :sv
|
31
|
+
]
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
describe Post, "#title" do
|
37
|
+
|
38
|
+
let(:post) { Post.new(title_sv: "Hej", title_en: "Halloa", title_fi: "Moi moi") }
|
39
|
+
|
40
|
+
before do
|
41
|
+
Post.translates :title
|
42
|
+
I18n.locale = :sv
|
43
|
+
I18n.default_locale = :en
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should give the title in the current locale" do
|
47
|
+
post.title.should == "Hej"
|
48
|
+
end
|
49
|
+
|
50
|
+
it "should fall back to the default locale if locale has no column" do
|
51
|
+
I18n.locale = :ru
|
52
|
+
post.title.should == "Halloa"
|
53
|
+
end
|
54
|
+
|
55
|
+
it "should fall back to the default locale if blank" do
|
56
|
+
post.title_sv = " "
|
57
|
+
post.title.should == "Halloa"
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should fall back to any other locale if default locale is blank" do
|
61
|
+
post.title_sv = " "
|
62
|
+
post.title_en = ""
|
63
|
+
post.title.should == "Moi moi"
|
64
|
+
end
|
65
|
+
|
66
|
+
it "should return nil if all are blank" do
|
67
|
+
post.title_sv = " "
|
68
|
+
post.title_en = ""
|
69
|
+
post.title_fi = nil
|
70
|
+
post.title.should be_nil
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
describe Post, "#title=" do
|
76
|
+
|
77
|
+
before do
|
78
|
+
Post.translates :title
|
79
|
+
I18n.locale = :sv
|
80
|
+
end
|
81
|
+
|
82
|
+
let(:post) { Post.new }
|
83
|
+
|
84
|
+
it "should assign in the current locale" do
|
85
|
+
post.title = "Hej"
|
86
|
+
post.title.should == "Hej"
|
87
|
+
post.title_sv.should == "Hej"
|
88
|
+
end
|
89
|
+
|
90
|
+
it "should raise if locale has no column" do
|
91
|
+
I18n.locale = :ru
|
92
|
+
-> {
|
93
|
+
post.title = "Privet"
|
94
|
+
}.should raise_error(NoMethodError, /title_ru/)
|
95
|
+
end
|
96
|
+
|
97
|
+
end
|
98
|
+
|
99
|
+
describe Post, ".human_attribute_name" do
|
100
|
+
|
101
|
+
before do
|
102
|
+
Post.translates :title
|
103
|
+
I18n.locale = :sv
|
104
|
+
end
|
105
|
+
|
106
|
+
it "should append a known language name" do
|
107
|
+
Post.human_attribute_name(:title_en).should == "Titel (engelska)"
|
108
|
+
end
|
109
|
+
|
110
|
+
it "should use abbreviation when language name is not known" do
|
111
|
+
Post.human_attribute_name(:title_fi).should == "Titel (FI)"
|
112
|
+
end
|
113
|
+
|
114
|
+
it "should yield to defined translations" do
|
115
|
+
Post.human_attribute_name(:title_sv).should == "Svensk titel"
|
116
|
+
end
|
117
|
+
|
118
|
+
it "should pass through the default behavior" do
|
119
|
+
Post.human_attribute_name(:title).should == "Titel"
|
120
|
+
end
|
121
|
+
|
122
|
+
it "should pass through untranslated columns" do
|
123
|
+
Post.human_attribute_name(:body_sv).should == "Body sv"
|
124
|
+
end
|
125
|
+
|
126
|
+
end
|
data/traco.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "traco/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "traco"
|
7
|
+
s.version = Traco::VERSION
|
8
|
+
s.authors = ["Henrik Nyh"]
|
9
|
+
s.email = ["henrik@barsoom.se"]
|
10
|
+
s.homepage = ""
|
11
|
+
s.summary = "Translatable columns for Rails 3, stored in the model table itself."
|
12
|
+
|
13
|
+
s.files = `git ls-files`.split("\n")
|
14
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
15
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
16
|
+
s.require_paths = ["lib"]
|
17
|
+
|
18
|
+
s.add_dependency "rails", "~> 3.0"
|
19
|
+
|
20
|
+
s.add_development_dependency "sqlite3"
|
21
|
+
|
22
|
+
s.add_development_dependency "rspec"
|
23
|
+
s.add_development_dependency "guard"
|
24
|
+
s.add_development_dependency "guard-rspec"
|
25
|
+
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,190 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: traco
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Henrik Nyh
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-03-16 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rails
|
16
|
+
requirement: &2152658260 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '3.0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *2152658260
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: sqlite3
|
27
|
+
requirement: &2152657840 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :development
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *2152657840
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: rspec
|
38
|
+
requirement: &2152657340 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :development
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *2152657340
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: guard
|
49
|
+
requirement: &2152656900 !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
type: :development
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: *2152656900
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: guard-rspec
|
60
|
+
requirement: &2152656460 !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ! '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
66
|
+
type: :development
|
67
|
+
prerelease: false
|
68
|
+
version_requirements: *2152656460
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- henrik@barsoom.se
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- .gitignore
|
77
|
+
- .rvmrc
|
78
|
+
- Gemfile
|
79
|
+
- Guardfile
|
80
|
+
- README.markdown
|
81
|
+
- Rakefile
|
82
|
+
- lib/traco.rb
|
83
|
+
- lib/traco/class_methods.rb
|
84
|
+
- lib/traco/instance_methods.rb
|
85
|
+
- lib/traco/translates.rb
|
86
|
+
- lib/traco/version.rb
|
87
|
+
- spec/dummy/Rakefile
|
88
|
+
- spec/dummy/app/assets/javascripts/application.js
|
89
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
90
|
+
- spec/dummy/app/controllers/application_controller.rb
|
91
|
+
- spec/dummy/app/helpers/application_helper.rb
|
92
|
+
- spec/dummy/app/mailers/.gitkeep
|
93
|
+
- spec/dummy/app/models/.gitkeep
|
94
|
+
- spec/dummy/app/models/post.rb
|
95
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
96
|
+
- spec/dummy/config.ru
|
97
|
+
- spec/dummy/config/application.rb
|
98
|
+
- spec/dummy/config/boot.rb
|
99
|
+
- spec/dummy/config/database.yml
|
100
|
+
- spec/dummy/config/environment.rb
|
101
|
+
- spec/dummy/config/environments/development.rb
|
102
|
+
- spec/dummy/config/environments/production.rb
|
103
|
+
- spec/dummy/config/environments/test.rb
|
104
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
105
|
+
- spec/dummy/config/initializers/inflections.rb
|
106
|
+
- spec/dummy/config/initializers/mime_types.rb
|
107
|
+
- spec/dummy/config/initializers/secret_token.rb
|
108
|
+
- spec/dummy/config/initializers/session_store.rb
|
109
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
110
|
+
- spec/dummy/config/locales/en.yml
|
111
|
+
- spec/dummy/config/locales/sv.yml
|
112
|
+
- spec/dummy/config/routes.rb
|
113
|
+
- spec/dummy/db/migrate/20120316101201_create_posts.rb
|
114
|
+
- spec/dummy/db/schema.rb
|
115
|
+
- spec/dummy/lib/assets/.gitkeep
|
116
|
+
- spec/dummy/log/.gitkeep
|
117
|
+
- spec/dummy/public/404.html
|
118
|
+
- spec/dummy/public/422.html
|
119
|
+
- spec/dummy/public/500.html
|
120
|
+
- spec/dummy/public/favicon.ico
|
121
|
+
- spec/dummy/script/rails
|
122
|
+
- spec/dummy/test/fixtures/posts.yml
|
123
|
+
- spec/dummy/test/unit/post_test.rb
|
124
|
+
- spec/spec_helper.rb
|
125
|
+
- spec/traco_spec.rb
|
126
|
+
- traco.gemspec
|
127
|
+
homepage: ''
|
128
|
+
licenses: []
|
129
|
+
post_install_message:
|
130
|
+
rdoc_options: []
|
131
|
+
require_paths:
|
132
|
+
- lib
|
133
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
134
|
+
none: false
|
135
|
+
requirements:
|
136
|
+
- - ! '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
140
|
+
none: false
|
141
|
+
requirements:
|
142
|
+
- - ! '>='
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0'
|
145
|
+
requirements: []
|
146
|
+
rubyforge_project:
|
147
|
+
rubygems_version: 1.8.5
|
148
|
+
signing_key:
|
149
|
+
specification_version: 3
|
150
|
+
summary: Translatable columns for Rails 3, stored in the model table itself.
|
151
|
+
test_files:
|
152
|
+
- spec/dummy/Rakefile
|
153
|
+
- spec/dummy/app/assets/javascripts/application.js
|
154
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
155
|
+
- spec/dummy/app/controllers/application_controller.rb
|
156
|
+
- spec/dummy/app/helpers/application_helper.rb
|
157
|
+
- spec/dummy/app/mailers/.gitkeep
|
158
|
+
- spec/dummy/app/models/.gitkeep
|
159
|
+
- spec/dummy/app/models/post.rb
|
160
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
161
|
+
- spec/dummy/config.ru
|
162
|
+
- spec/dummy/config/application.rb
|
163
|
+
- spec/dummy/config/boot.rb
|
164
|
+
- spec/dummy/config/database.yml
|
165
|
+
- spec/dummy/config/environment.rb
|
166
|
+
- spec/dummy/config/environments/development.rb
|
167
|
+
- spec/dummy/config/environments/production.rb
|
168
|
+
- spec/dummy/config/environments/test.rb
|
169
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
170
|
+
- spec/dummy/config/initializers/inflections.rb
|
171
|
+
- spec/dummy/config/initializers/mime_types.rb
|
172
|
+
- spec/dummy/config/initializers/secret_token.rb
|
173
|
+
- spec/dummy/config/initializers/session_store.rb
|
174
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
175
|
+
- spec/dummy/config/locales/en.yml
|
176
|
+
- spec/dummy/config/locales/sv.yml
|
177
|
+
- spec/dummy/config/routes.rb
|
178
|
+
- spec/dummy/db/migrate/20120316101201_create_posts.rb
|
179
|
+
- spec/dummy/db/schema.rb
|
180
|
+
- spec/dummy/lib/assets/.gitkeep
|
181
|
+
- spec/dummy/log/.gitkeep
|
182
|
+
- spec/dummy/public/404.html
|
183
|
+
- spec/dummy/public/422.html
|
184
|
+
- spec/dummy/public/500.html
|
185
|
+
- spec/dummy/public/favicon.ico
|
186
|
+
- spec/dummy/script/rails
|
187
|
+
- spec/dummy/test/fixtures/posts.yml
|
188
|
+
- spec/dummy/test/unit/post_test.rb
|
189
|
+
- spec/spec_helper.rb
|
190
|
+
- spec/traco_spec.rb
|