This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
twine/twine.gemspec

33 lines
1.1 KiB
Ruby

$LOAD_PATH.unshift 'lib'
require 'twine/version'
Gem::Specification.new do |s|
s.name = "twine"
s.version = Twine::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Manage strings and their translations for your iOS and Android projects."
s.homepage = "https://github.com/mobiata/twine"
s.email = "twine@mobiata.com"
s.authors = [ "Sebastian Celis" ]
s.has_rdoc = false
s.files = %w( Gemfile README.md LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("test/**/*")
s.test_files = Dir.glob("test/test_*")
s.required_ruby_version = ">= 1.8.7"
s.add_runtime_dependency('rubyzip', "~> 0.9.5")
s.add_runtime_dependency('safe_yaml', "~> 1.0.3")
s.add_development_dependency('rake', "~> 0.9.2")
s.add_development_dependency('minitest', "> 5.5")
s.add_development_dependency('mocha', ">= 1.1")
s.executables = %w( twine )
s.description = <<desc
Twine is a command line tool for managing your strings and their translations.
It is geared toward Mac OS X, iOS, and Android developers.
desc
end