Sha256: 55c0d1c8a6384dead213bd80faeedaf88072cd38d7ac8cc1909f25b863d94aaf
Contents?: true
Size: 847 Bytes
Versions: 1
Compression:
Stored size: 847 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) require 'phrase/version' Gem::Specification.new do |s| s.name = "phrase" s.version = Phrase::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Dynport GmbH"] s.email = ["info@phraseapp.com"] s.homepage = "https://phraseapp.com" s.summary = %q{The best way to manage i18n.} s.description = %q{phrase allows you to edit translations in-place on the page itself. More information at phraseapp.com} s.required_rubygems_version = ">= 1.3.6" s.rubyforge_project = "phrase" git_files = `git ls-files | grep -v spec/`.split("\n") rescue '' s.files = git_files s.executables = %w(phrase) s.require_paths = ["lib"] s.add_dependency('activesupport', '~> 3.0') s.add_dependency('addressable', '~> 2.2.8') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phrase-0.2.1 | phrase.gemspec |