Incorporated PR feedback.
This commit is contained in:
parent
ef84dd322c
commit
ce5c9a1828
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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" ]
|
||||
|
|
Reference in a new issue