Sha256: 99d92323a825cd2b3e1c4229dd4882cf1462a036143f9606f8cd2962c31af9f8
Contents?: true
Size: 1.18 KB
Versions: 5
Compression:
Stored size: 1.18 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'xcmultilingual/version' Gem::Specification.new do |spec| spec.name = "xcmultilingual" spec.version = Xcmultilingual::VERSION spec.authors = ["Naoki Morita"] spec.email = ["namorit@gmail.com"] spec.summary = "Command line tool for Swift localizations: It parses localization files in project and output swift file including functions with pretty complementations" spec.description = "Command line tool for Swift localizations: It parses localization files in the project and output swift file including functions with pretty complementations!" spec.homepage = "https://github.com/morizotter/xcmultilingual" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'thor' spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" end
Version data entries
5 entries across 5 versions & 1 rubygems