Sha256: 81a254cf1cbeff13d08a6560845a21b1611c315f8df0db910a6d326918962cd6

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

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       = %w(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 = %w(lib)

  s.license          = 'MIT'

  s.add_dependency 'activesupport', '>= 3.2.0'
  s.add_dependency 'activerecord', '>= 3.2.0'
  s.add_development_dependency 'sqlite3'
  s.add_development_dependency 'appraisal'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'test-unit'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
has_translations-1.1.2 has_translations.gemspec
has_translations-1.1.1 has_translations.gemspec
has_translations-1.1.0 has_translations.gemspec