i18n-tasks-ar 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +20 -0
  3. data/README.md +15 -0
  4. data/Rakefile +19 -0
  5. data/lib/i18n-tasks-ar.rb +12 -0
  6. data/lib/i18n/tasks/ar/attribute.rb +54 -0
  7. data/lib/i18n/tasks/ar/config.rb +27 -0
  8. data/lib/i18n/tasks/ar/engine.rb +8 -0
  9. data/lib/i18n/tasks/ar/generate.rb +29 -0
  10. data/lib/i18n/tasks/ar/model.rb +39 -0
  11. data/lib/i18n/tasks/ar/version.rb +7 -0
  12. data/lib/tasks/i18n-tasks-ar.rake +16 -0
  13. data/test/dummy/README.rdoc +28 -0
  14. data/test/dummy/Rakefile +6 -0
  15. data/test/dummy/app/assets/javascripts/application.js +13 -0
  16. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/test/dummy/app/controllers/application_controller.rb +5 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/bin/bundle +3 -0
  21. data/test/dummy/bin/rails +4 -0
  22. data/test/dummy/bin/rake +4 -0
  23. data/test/dummy/config.ru +4 -0
  24. data/test/dummy/config/application.rb +24 -0
  25. data/test/dummy/config/boot.rb +5 -0
  26. data/test/dummy/config/database.yml +25 -0
  27. data/test/dummy/config/environment.rb +5 -0
  28. data/test/dummy/config/environments/development.rb +29 -0
  29. data/test/dummy/config/environments/production.rb +80 -0
  30. data/test/dummy/config/environments/test.rb +36 -0
  31. data/test/dummy/config/i18n-tasks.yml +1 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/secret_token.rb +12 -0
  37. data/test/dummy/config/initializers/session_store.rb +3 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +23 -0
  40. data/test/dummy/config/routes.rb +56 -0
  41. data/test/dummy/db/test.sqlite3 +0 -0
  42. data/test/dummy/log/test.log +595 -0
  43. data/test/dummy/public/404.html +58 -0
  44. data/test/dummy/public/422.html +58 -0
  45. data/test/dummy/public/500.html +57 -0
  46. data/test/dummy/public/favicon.ico +0 -0
  47. data/test/i18n-tasks-ar_test.rb +7 -0
  48. data/test/models/attribute_test.rb +36 -0
  49. data/test/models/generate_test.rb +30 -0
  50. data/test/models/models_test.rb +43 -0
  51. data/test/test_helper.rb +41 -0
  52. metadata +174 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3a3aaa7f35e7ec93355c4d1043c68940977152d1
4
+ data.tar.gz: c8ad39ac80f90a598bbe542ec50ff6e45973e49b
5
+ SHA512:
6
+ metadata.gz: 953497fb1cf31a620498a9c8a2f7dabdc5c80f7a79a3b133a34a1d25fdc6437d6289c3e6137b9ed3fa176d65c74be28caf9c1385e8c2976571806abc347bf0a5
7
+ data.tar.gz: 4ec91680795ed9733b8d1c69537a1b17c74c056ab7cd33820a69308d44f7c721db5b323a353d0189580a460e830842fafaa7d7fddc983a8ac4ba37960e283582
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2014 Jiri Kolarik
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # I18n::Tasks::AR [![Build Status][badge-travis]][travis] [![Coverage Status][badge-coveralls]][coveralls] [![Dependency Status][badge-gemnasium]][gemnasium] [![Code Climate][badge-code-climate]][code-climate]
2
+ Translate your databases names
3
+
4
+ ## Rails Engine
5
+ Using inside engine? Load tasks - `load 'tasks/i18n-tasks-ar.rake'` in your `Rakefile`
6
+
7
+ [badge-travis]: https://travis-ci.org/werein/i18n-tasks-ar.svg?branch=master
8
+ [badge-coveralls]: https://coveralls.io/repos/werein/i18n-tasks-ar/badge.png?branch=master
9
+ [badge-gemnasium]: https://gemnasium.com/werein/i18n-tasks-ar.svg
10
+ [badge-code-climate]: https://codeclimate.com/github/werein/i18n-tasks-ar.png
11
+
12
+ [travis]: https://travis-ci.org/werein/i18n-tasks-ar
13
+ [coveralls]: https://coveralls.io/r/werein/i18n-tasks-ar?branch=master
14
+ [gemnasium]: https://gemnasium.com/werein/i18n-tasks-ar
15
+ [code-climate]: https://codeclimate.com/github/werein/i18n-tasks-ar
data/Rakefile ADDED
@@ -0,0 +1,19 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ Bundler::GemHelper.install_tasks
8
+
9
+ require 'rake/testtask'
10
+
11
+ Rake::TestTask.new(:test) do |t|
12
+ t.libs << 'lib'
13
+ t.libs << 'test'
14
+ t.pattern = 'test/**/*_test.rb'
15
+ t.verbose = false
16
+ end
17
+
18
+
19
+ task default: :test
@@ -0,0 +1,12 @@
1
+ require 'i18n/tasks/ar/engine'
2
+ require 'i18n/tasks/ar/config'
3
+ require 'i18n/tasks/ar/model'
4
+ require 'i18n/tasks/ar/attribute'
5
+ require 'i18n/tasks/ar/generate'
6
+
7
+ module I18n
8
+ module Tasks
9
+ module Ar
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,54 @@
1
+ module I18n
2
+ module Tasks
3
+ module Ar
4
+ module Attribute
5
+ class << self
6
+
7
+ # Load classes and attributes and transform them into tash
8
+ #
9
+ # Attribue.names # => { 'MyClass' => ['first_attribute', 'second_attribute'] }
10
+ #
11
+ def names
12
+ result = {}
13
+ ActiveRecord::Base.descendants.each do |model|
14
+ result[model.name] = model.attribute_names
15
+ end
16
+ result
17
+ end
18
+
19
+ #
20
+ # Generate hash with models and attributes transformed into i18n structure
21
+ #
22
+ # Attribute.hash # => { 'my_model/subclass' => { 'id' => 'ID', 'attribute_name' => 'Attribute name' } }
23
+ #
24
+ def hash
25
+ if !names.empty?
26
+ result = {}
27
+ names.each do |key, value|
28
+ hash_name = Model.slashed(key)
29
+ result[hash_name] = {}
30
+ value.each do |attribute|
31
+ result[hash_name].merge!({ attribute => attribute.gsub('_', ' ').capitalize })
32
+ end
33
+ end
34
+ result
35
+ end
36
+ end
37
+
38
+ #
39
+ # Generate final hash with translatable structure
40
+ #
41
+ # Attribute.final_hash('en') # => { 'en' => { 'activerecord' => { 'attributes' => { ... } } } }
42
+ #
43
+ # @param lang [String] [Translation locale]
44
+ #
45
+ def final_hash lang
46
+ result = {}
47
+ result[lang.to_s] = { 'activerecord' => { 'attributes' => hash } }
48
+ result
49
+ end
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,27 @@
1
+ module I18n
2
+ module Tasks
3
+ module Ar
4
+ module Config
5
+ include ActiveSupport::Configurable
6
+
7
+ config_accessor :locales
8
+
9
+ # Reset all configurations to defaults.
10
+ def self.reset
11
+ file = 'config/i18n-tasks.yml' if File.exist?('config/i18n-tasks.yml')
12
+ file = 'config/i18n-tasks-ar.yml' if File.exist?('config/i18n-tasks-ar.yml')
13
+
14
+ if file
15
+ config = YAML.load_file(file)
16
+ self.locales = config['locales']
17
+ else
18
+ self.locales = ['en']
19
+ end
20
+ end
21
+
22
+ # Set default values for configuration options on load
23
+ self.reset
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,8 @@
1
+ module I18n
2
+ module Tasks
3
+ module Ar
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,29 @@
1
+ module I18n
2
+ module Tasks
3
+ module Ar
4
+ module Generate
5
+ class << self
6
+ def model lang
7
+ result = Model.final_hash(lang).to_yaml
8
+ FileUtils.mkdir_p('config/locales') unless File.exists?('config/locales')
9
+ File.open("config/locales/activerecord.models.#{lang}.yml", 'w+') {|f| f.write(result) }
10
+ end
11
+
12
+ def models
13
+ I18n::Tasks::Ar::Config.locales.each{|locale| model(locale)}
14
+ end
15
+
16
+ def attribute lang
17
+ result = Attribute.final_hash(lang).to_yaml
18
+ FileUtils.mkdir_p('config/locales') unless File.exists?('config/locales')
19
+ File.open("config/locales/activerecord.attributes.#{lang}.yml", 'w+') {|f| f.write(result) }
20
+ end
21
+
22
+ def attributes
23
+ I18n::Tasks::Ar::Config.locales.each{|locale| attribute(locale)}
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,39 @@
1
+ module I18n
2
+ module Tasks
3
+ module Ar
4
+ module Model
5
+ class << self
6
+ def names
7
+ ActiveRecord::Base.descendants.map(&:name)
8
+ end
9
+
10
+ def hash
11
+ if !names.empty?
12
+ result = {}
13
+ names.each do |name|
14
+ result[slashed(name)] = { 'one' => real_name(name), 'other' => real_name(name).pluralize }
15
+ end
16
+ result
17
+ else
18
+ nil
19
+ end
20
+ end
21
+
22
+ def slashed name
23
+ name.underscore.gsub('::', '/')
24
+ end
25
+
26
+ def real_name name
27
+ name.split('::').last
28
+ end
29
+
30
+ def final_hash lang
31
+ result = {}
32
+ result[lang.to_s] = { 'activerecord' => { 'models' => hash } }
33
+ result
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,7 @@
1
+ module I18n
2
+ module Tasks
3
+ module Ar
4
+ VERSION = "0.1.0"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,16 @@
1
+ # desc "Explaining what the task does"
2
+ # task :i18n_db_tasks do
3
+ # # Task goes here
4
+ # end
5
+
6
+ namespace :i18n_tasks_ar do
7
+ desc 'Rebuild entire model translation file'
8
+ task rebuild_models: :environment do
9
+ I18n::Tasks::Ar::Generate.models
10
+ end
11
+
12
+ desc 'Rebuild entire attribute translation file'
13
+ task rebuild_attributes: :environment do
14
+ I18n::Tasks::Ar::Generate.attributes
15
+ end
16
+ end
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Dummy::Application.load_tasks
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,5 @@
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
@@ -0,0 +1,24 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require(*Rails.groups)
6
+ require "i18n-tasks-ar"
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
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
15
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
16
+ # config.time_zone = 'Central Time (US & Canada)'
17
+
18
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
19
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
20
+ # config.i18n.default_locale = :de
21
+ config.i18n.available_locales = [:en, :cs]
22
+ end
23
+ end
24
+
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -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