Sha256: e0c5b9a914d1b6c872afb0948d26bbce8e10382f213369d0a2c1a6d7a6a31c92

Contents?: true

Size: 985 Bytes

Versions: 1

Compression:

Stored size: 985 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "has_translations/version"

Gem::Specification.new do |s|
  s.name        = "has_translations"
  s.version     = HasTranslations::VERSION
  s.authors     = ["Dmitry Polushkin"]
  s.email       = ["dmitry.polushkin@gmail.com"]
  s.homepage    = "http://github.com/dmitry/has_translations"
  s.summary     = %q{Create translations for your ActiveRecord models.}
  s.description = %q{Create translations for your ActiveRecord models. Uses delegate pattern. Fully tested and used in a several production sites.}

  s.rubyforge_project = "has_translations"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.license          = 'MIT'
  s.add_dependency 'activesupport', '> 2.3'
  s.add_dependency 'activerecord', '> 2.3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
has_translations-0.3.5 has_translations.gemspec