fastlane-plugin-localization 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 31e86826eb665bc0e6c3246241140b37b029b375
4
- data.tar.gz: eca35b1003dc9c4d359fff7b0ed073ee8c2d571c
3
+ metadata.gz: ca1088a506c2286025e45af47abb9ab158478fec
4
+ data.tar.gz: 1bd7c9b4a39b2c521f1bd01143a96185b0fb8172
5
5
  SHA512:
6
- metadata.gz: 154f30d4e680a4570e69aa3fc6b3ad9faaa18ae17cfb2006001bdb2767a98ec03149dee27f9ea4019284297303942b4e5b82819411872de38f0e1920d1004da7
7
- data.tar.gz: 5ccc77bbfb6205640831eb6c21e8f5863318ebaa5c8c09bfbd13e40c3ea01e639567b6b3baa88d698a01ce7f2968496e29f8b47852be013764feb99c7cd6d084
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
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
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
- ["Viktor Malyi"]
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
- ["Viktor Malyi"]
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Localization
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  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.1.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-07-29 00:00:00.000000000 Z
11
+ date: 2016-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry