Skip to content

Commit

Permalink
renamed language packs
Browse files Browse the repository at this point in the history
  • Loading branch information
kbingman committed Mar 11, 2010
1 parent b0ff225 commit 4d3a74c
Show file tree
Hide file tree
Showing 64 changed files with 5,764 additions and 39 deletions.
40 changes: 8 additions & 32 deletions lib/generators/language_extension/language_extension_generator.rb
Expand Up @@ -5,8 +5,8 @@ class LanguageExtensionGenerator < Rails::Generator::NamedBase

def initialize(runtime_args, runtime_options = {})
super
@extension_file_name = "i18n_#{file_name}_extension"
@extension_path = "vendor/extensions/i18n_#{file_name}"
@extension_file_name = "#{file_name}_language_pack_extension"
@extension_path = "vendor/extensions/#{file_name}_language_pack"
@localization_name = localization_name
end

Expand All @@ -17,50 +17,26 @@ def manifest

m.template 'README', "#{extension_path}/README"
m.template 'extension.rb', "#{extension_path}/#{extension_file_name}.rb"
m.template 'tasks.rake', "#{extension_path}/lib/tasks/#{extension_file_name}_tasks.rake"
# m.template 'tasks.rake', "#{extension_path}/lib/tasks/#{extension_file_name}_tasks.rake"
m.template 'lang.yml', "#{extension_path}/config/locales/#{localization_name}.yml"
m.template 'available_tags.yml', "#{extension_path}/config/locales/#{localization_name}_available_tags.yml"

if options[:with_test_unit]
m.directory "#{extension_path}/test/fixtures"
m.directory "#{extension_path}/test/functional"
m.directory "#{extension_path}/test/unit"

m.template 'Rakefile', "#{extension_path}/Rakefile"
m.template 'test_helper.rb', "#{extension_path}/test/test_helper.rb"
m.template 'functional_test.rb', "#{extension_path}/test/functional/#{extension_file_name}_test.rb"
else
m.directory "#{extension_path}/spec/controllers"
m.directory "#{extension_path}/spec/models"
m.directory "#{extension_path}/spec/views"
m.directory "#{extension_path}/spec/helpers"
m.directory "#{extension_path}/features/support"
m.directory "#{extension_path}/features/step_definitions/admin"

m.template 'RSpecRakefile', "#{extension_path}/Rakefile"
m.template 'spec_helper.rb', "#{extension_path}/spec/spec_helper.rb"
m.file 'spec.opts', "#{extension_path}/spec/spec.opts"
m.file 'cucumber.yml', "#{extension_path}/cucumber.yml"
m.template 'cucumber_env.rb', "#{extension_path}/features/support/env.rb"
m.template 'cucumber_paths.rb', "#{extension_path}/features/support/paths.rb"
end
end

end

def class_name
'I18n' + super.to_name.gsub(' ', '') + 'Extension'
super.to_name.gsub(' ', '') + 'LanguagePackExtension'
end

def extension_name
class_name.to_name('Extension')
end

def add_options!(opt)
opt.separator ''
opt.separator 'Options:'
opt.on("--with-test-unit",
"Use Test::Unit for this extension instead of RSpec") { |v| options[:with_test_unit] = v }
# opt.separator ''
# opt.separator 'Options:'
# opt.on("--with-test-unit",
# "Use Test::Unit for this extension instead of RSpec") { |v| options[:with_test_unit] = v }
end

def localization_name
Expand Down
9 changes: 3 additions & 6 deletions lib/tasks/translate.rake
Expand Up @@ -9,7 +9,7 @@ namespace :radiant do
language_root = "#{RADIANT_ROOT}/config/locales"
words = TranslationSupport.get_translation_keys(language_root)
locale_paths.each do |path|
if path == language_root || path.match('i18n_')
if path == language_root || path.match('language_pack')
Dir["#{path}/*.yml"].each do |filename|
next if filename.match('_available_tags')
basename = File.basename(filename, '.yml')
Expand Down Expand Up @@ -43,16 +43,13 @@ namespace :radiant do
language_root = "#{RADIANT_ROOT}/config/locales"
words = TranslationSupport.open_available_tags("#{language_root}/en_available_tags.yml")
locale_paths.each do |path|
if path == language_root || path.match('i18n_')
if path == language_root || path.match('language_pack')
Dir["#{path}/*.yml"].each do |filename|
puts filename
next unless filename.match('_available_tags')
basename = File.basename(filename, '_available_tags.yml')
puts "Syncing #{basename}"
(comments, other) = TranslationSupport.open_available_tags(filename)
words.each { |k,v| other[k] ||= words[k] } # Initializing hash variable as empty if it does not exist
other.delete_if { |k,v| !words[k] } # Remove if not defined in en.yml
TranslationSupport.write_file(filename, basename, comments, other)
puts other
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/translation_support.rb
Expand Up @@ -35,7 +35,7 @@ def create_hash(data, basename)

def open_available_tags(filename)
data = YAML::load(File.open("#{filename}"))
data
data.to_s
end

#Writes to file from translation data hash structure
Expand Down
3 changes: 3 additions & 0 deletions vendor/extensions/dutch_language_pack/README
@@ -0,0 +1,3 @@
= I18n Nl

Description goes here
123 changes: 123 additions & 0 deletions vendor/extensions/dutch_language_pack/Rakefile
@@ -0,0 +1,123 @@
# I think this is the one that should be moved to the extension Rakefile template

# In rails 1.2, plugins aren't available in the path until they're loaded.
# Check to see if the rspec plugin is installed first and require
# it if it is. If not, use the gem version.

# Determine where the RSpec plugin is by loading the boot
unless defined? RADIANT_ROOT
ENV["RAILS_ENV"] = "test"
case
when ENV["RADIANT_ENV_FILE"]
require File.dirname(ENV["RADIANT_ENV_FILE"]) + "/boot"
when File.dirname(__FILE__) =~ %r{vendor/radiant/vendor/extensions}
require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../../")}/config/boot"
else
require "#{File.expand_path(File.dirname(__FILE__) + "/../../../")}/config/boot"
end
end

require 'rake'
require 'rake/rdoctask'
require 'rake/testtask'

rspec_base = File.expand_path(RADIANT_ROOT + '/vendor/plugins/rspec/lib')
$LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base)
require 'spec/rake/spectask'
require 'cucumber'
require 'cucumber/rake/task'

# Cleanup the RADIANT_ROOT constant so specs will load the environment
Object.send(:remove_const, :RADIANT_ROOT)

extension_root = File.expand_path(File.dirname(__FILE__))

task :default => :spec
task :stats => "spec:statsetup"

desc "Run all specs in spec directory"
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""]
t.spec_files = FileList['spec/**/*_spec.rb']
end

task :features => 'spec:integration'

namespace :spec do
desc "Run all specs in spec directory with RCov"
Spec::Rake::SpecTask.new(:rcov) do |t|
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""]
t.spec_files = FileList['spec/**/*_spec.rb']
t.rcov = true
t.rcov_opts = ['--exclude', 'spec', '--rails']
end

desc "Print Specdoc for all specs"
Spec::Rake::SpecTask.new(:doc) do |t|
t.spec_opts = ["--format", "specdoc", "--dry-run"]
t.spec_files = FileList['spec/**/*_spec.rb']
end

[:models, :controllers, :views, :helpers].each do |sub|
desc "Run the specs under spec/#{sub}"
Spec::Rake::SpecTask.new(sub) do |t|
t.spec_opts = ['--options', "\"#{extension_root}/spec/spec.opts\""]
t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
end
end

desc "Run the Cucumber features"
Cucumber::Rake::Task.new(:integration) do |t|
t.fork = true
t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'pretty')]
# t.feature_pattern = "#{extension_root}/features/**/*.feature"
t.profile = "default"
end

# Setup specs for stats
task :statsetup do
require 'code_statistics'
::STATS_DIRECTORIES << %w(Model\ specs spec/models)
::STATS_DIRECTORIES << %w(View\ specs spec/views)
::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers)
::STATS_DIRECTORIES << %w(Helper\ specs spec/views)
::CodeStatistics::TEST_TYPES << "Model specs"
::CodeStatistics::TEST_TYPES << "View specs"
::CodeStatistics::TEST_TYPES << "Controller specs"
::CodeStatistics::TEST_TYPES << "Helper specs"
::STATS_DIRECTORIES.delete_if {|a| a[0] =~ /test/}
end

namespace :db do
namespace :fixtures do
desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y"
task :load => :environment do
require 'active_record/fixtures'
ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym)
(ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/) : Dir.glob(File.join(RAILS_ROOT, 'spec', 'fixtures', '*.{yml,csv}'))).each do |fixture_file|
Fixtures.create_fixtures('spec/fixtures', File.basename(fixture_file, '.*'))
end
end
end
end
end

desc 'Generate documentation for the nl extension.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'I18nNlExtension'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end

# For extensions that are in transition
desc 'Test the nl extension.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end

# Load any custom rakefiles for extension
Dir[File.dirname(__FILE__) + '/tasks/*.rake'].sort.each { |f| require f }

0 comments on commit 4d3a74c

Please sign in to comment.