Sha256: b0b142d0fbdb972f091b011847c44378b9497756cedad5e5ee283b2c35b1255c
Contents?: true
Size: 1.17 KB
Versions: 4
Compression:
Stored size: 1.17 KB
Contents
require 'rspec/core/rake_task' require "bundler/gem_tasks" desc 'Default: run specs.' task :default => :spec desc 'Run the specs' RSpec::Core::RakeTask.new do |t| t.rspec_opts = ['--color --format progress'] end begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = 'translate-rails3-plus' gem.summary = %Q{Newsdesk translate plugin for Rails 3} gem.description = <<EOF This plugin provides a web interface for translating Rails I18n texts (requires Rails 3.0 or higher) from one locale to another. The plugin has been tested only with the simple I18n backend that ships with Rails. I18n texts are read from and written to YAML files under config/locales. This gem is a fork of https://github.com/romanbsd/translate. From the original https://github.com/mynewsdesk/translate which also includes work from this fork: https://github.com/milann/translate EOF gem.email = 'gsmedley@kanayo.com' gem.homepage = 'https://github.com/gsmedley/translate' gem.authors = ['Peter Marklund', 'Milan Novota', 'Roman Shterenzon', 'Garth Smedley'] gem.add_dependency 'ya2yaml', '~> 0.30' # For UTF-8 support in YAML end Jeweler::GemcutterTasks.new rescue LoadError end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
translate-rails3-plus-0.0.15 | Rakefile |
translate-rails3-plus-0.0.14 | Rakefile |
translate-rails3-plus-0.0.13 | Rakefile |
translate-rails3-plus-0.0.12 | Rakefile |