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

github.com/mapsme/twine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--lib/twine/cli.rb2
-rw-r--r--twine.gemspec2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5c08e30..3cb9603 100644
--- a/README.md
+++ b/README.md
@@ -179,7 +179,7 @@ Now, whenever you build your application, Xcode will automatically invoke Twine
Add the following task at the top level in app/build.gradle:
```
task generateLocalizations {
- Localization script = 'if hash twine 2>/dev/null; then twine generate-localization-file twine.txt ./src/main/res/values/generated_strings.xml; fi'
+ String script = 'if hash twine 2>/dev/null; then twine generate-localization-file twine.txt ./src/main/res/values/generated_strings.xml; fi'
exec {
executable "sh"
args '-c', script
diff --git a/lib/twine/cli.rb b/lib/twine/cli.rb
index fde1d2a..295922d 100644
--- a/lib/twine/cli.rb
+++ b/lib/twine/cli.rb
@@ -145,7 +145,7 @@ module Twine
}
mapped_command = deprecated_command_mappings[args[0]]
if mapped_command
- Twine::stderr.puts "WARNING: Twine commands names have changed. `#{args[0]}` is now `#{mapped_command}`. The old command is deprecated will soon stop working. For more information please check the documentation at https://github.com/mobiata/"
+ Twine::stderr.puts "WARNING: Twine commands names have changed. `#{args[0]}` is now `#{mapped_command}`. The old command is deprecated will soon stop working. For more information please check the documentation at https://github.com/mobiata/twine"
args[0] = mapped_command
end
diff --git a/twine.gemspec b/twine.gemspec
index b51250c..98bc26a 100644
--- a/twine.gemspec
+++ b/twine.gemspec
@@ -5,7 +5,7 @@ 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 platform projects."
+ 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" ]