fastlane-plugin-localization 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca1088a506c2286025e45af47abb9ab158478fec
|
4
|
+
data.tar.gz: 1bd7c9b4a39b2c521f1bd01143a96185b0fb8172
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2d7cdc724d31cad2cc3f023a7181a2a0d06f9b86df10e7d951eda4c8a17506b7115cf200d804190a93c54c882008d749219e8d2696b7640091847298cd6e799
|
7
|
+
data.tar.gz: f1b78985c7b74b01332f2fdaaf8126c5fb01150fe3cac533a308a6b345c0755e1f029f72f5d98061e34424902e6e46426db1b29fb3f9082b856ec3de401cc1f6
|
data/README.md
CHANGED
@@ -14,13 +14,12 @@ fastlane add_plugin localization
|
|
14
14
|
|
15
15
|
Export/import app localizations with help of xcodebuild -exportLocalizations/-importLocalizations tool
|
16
16
|
|
17
|
-
|
17
|
+
Using it is Apple's recommended approach when dealing with localizations. Read more info [here](https://developer.apple.com/library/ios/documentation/MacOSX/Conceptual/BPInternational/LocalizingYourApp/LocalizingYourApp.html#//apple_ref/doc/uid/10000171i-CH5-SW13).
|
18
18
|
|
19
19
|
## Example
|
20
20
|
|
21
|
-
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
21
|
+
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
22
|
|
23
|
-
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
24
23
|
|
25
24
|
## Run tests for this plugin
|
26
25
|
|
@@ -28,12 +27,7 @@ To run both the tests, and code style validation, run
|
|
28
27
|
|
29
28
|
````
|
30
29
|
rake
|
31
|
-
|
32
|
-
|
33
|
-
To automatically fix many of the styling issues, use
|
34
|
-
```
|
35
|
-
rubocop -a
|
36
|
-
```
|
30
|
+
````
|
37
31
|
|
38
32
|
## Issues and Feedback
|
39
33
|
|
@@ -15,7 +15,7 @@ module Fastlane
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def self.authors
|
18
|
-
["
|
18
|
+
["vmalyi"]
|
19
19
|
end
|
20
20
|
|
21
21
|
def self.available_options
|
@@ -34,7 +34,6 @@ module Fastlane
|
|
34
34
|
end
|
35
35
|
|
36
36
|
def self.is_supported?(platform)
|
37
|
-
[:ios, :mac].include?(platform)
|
38
37
|
true
|
39
38
|
end
|
40
39
|
end
|
@@ -15,7 +15,7 @@ module Fastlane
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def self.authors
|
18
|
-
["
|
18
|
+
["vmalyi"]
|
19
19
|
end
|
20
20
|
|
21
21
|
def self.available_options
|
@@ -34,7 +34,6 @@ module Fastlane
|
|
34
34
|
end
|
35
35
|
|
36
36
|
def self.is_supported?(platform)
|
37
|
-
[:ios, :mac].include?(platform)
|
38
37
|
true
|
39
38
|
end
|
40
39
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-localization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Viktor Malyi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|