Sha256: b16a0b23db0af084dd1479973f54cb224c29a9b83a09c1be14f6dc3d150f625f
Contents?: true
Size: 1.22 KB
Versions: 2
Compression:
Stored size: 1.22 KB
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' $LOAD_PATH.unshift File.expand_path("../lib", __FILE__) require "remote_i18n/version" require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "remote_i18n" gem.homepage = "http://github.com/juggy/remote_i18n" gem.license = "MIT" gem.summary = %Q{I18n for Javascript with Rails} gem.description = %Q{RemoteI18n helps developer export translated messages from a Rails server to a Javascript/HTML client application. More and more we need to use templates in javascript to create new HTML segments, but when you are building an I18n application you need to make sure that those segments contains the right language. This is what this project is for. For now it bundle the Rails translations into different javascript file ready for consumption.} gem.version = RemoteI18n::Version::STRING gem.email = "julien@porkepic.com" gem.authors = ["Julien Guimont"] end Jeweler::RubygemsDotOrgTasks.new
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
remote_i18n-0.1.1 | Rakefile |
remote_i18n-0.1.0 | Rakefile |