Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tools/twine/twine.gemspec')
m---------tools/twine0
-rw-r--r--tools/twine/twine.gemspec34
2 files changed, 0 insertions, 34 deletions
diff --git a/tools/twine b/tools/twine
new file mode 160000
+Subproject 1813945b2d0d05a75acb328c8ffbe28b70d41ae
diff --git a/tools/twine/twine.gemspec b/tools/twine/twine.gemspec
deleted file mode 100644
index d16d04bca6..0000000000
--- a/tools/twine/twine.gemspec
+++ /dev/null
@@ -1,34 +0,0 @@
-$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, Android and other projects."
- s.homepage = "https://github.com/mobiata/twine"
- s.email = "twine@mobiata.com"
- s.authors = [ "Sebastian Celis" ]
- s.has_rdoc = false
- s.license = "BSD-3-Clause"
-
- 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 = ">= 2.0"
- s.add_runtime_dependency('rubyzip', "~> 1.1")
- s.add_runtime_dependency('safe_yaml', "~> 1.0")
- s.add_development_dependency('rake', "~> 10.4")
- 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