fastlane-plugin-xliff_en_gen 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: a7d6bcc9453d2a52192b03711b08bbb2211b02bc
4
- data.tar.gz: 984caa0104bebcef2c7c569897af0214104735d6
3
+ metadata.gz: f8b9768c2749b4a2176a6e55b1833cedf8b50dbd
4
+ data.tar.gz: d4541d78d649928c89f6531f1508fc627573e406
5
5
  SHA512:
6
- metadata.gz: 22f22226eaaa4d39f631e024ab49c365162a9dbc77d5a1d55dd3546cf8f7b444362e51a8f1cd070fd5d9a163d15e80ff810bb2fe92fadc32fd61c5f48d8e49cc
7
- data.tar.gz: aa875d225b4a2c8d6ba8f5073d423ab98dc33db0d0c58bc8e6656b71c9d99ba56b9693aed8937e0923e931e459bea4f189197c1003d2e1701610276ad51fceec
6
+ metadata.gz: 7c146ad0c8bf07f32256053029794e1357e999768c0b0acd63e10f6fb501dbb68cabee375eb629d74225438c4ba5d4570054cbf98005aa7f15867cd4220ba600
7
+ data.tar.gz: 5bac93b58ccb3ff9e94ade85fd06dae23c55b5c9070816f7ba835533506292d69c9f1ffda86a3c95e584fcf53426b7f2fd9881b3ef5d0a7f0b9110ace6e859f1
@@ -96,11 +96,11 @@ module Fastlane
96
96
  # type: String)
97
97
  FastlaneCore::ConfigItem.new(key: :xcodeproj,
98
98
  env_name: "XLIFF_EN_GEN_PROJECT",
99
- description: "optional, you must specify the path to your main Xcode project if it is not in the project root directory",
100
- optional: true,
99
+ description: "Specify the path to your main Xcode project",
100
+ optional: false,
101
101
  type: String,
102
102
  verify_block: proc do |value|
103
- UI.user_error!("Please pass the path to the project, not the workspace") if value.end_with? ".xcworkspace"
103
+ UI.user_error!("Please use the path to the project") if value.end_with? ".xcodeproj"
104
104
  UI.user_error!("Could not find Xcode project at path '#{File.expand_path(value)}'") if !File.exist?(value) and !Helper.is_test?
105
105
  end),
106
106
  FastlaneCore::ConfigItem.new(key: :localizable,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module XliffEnGen
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-xliff_en_gen
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
  - alexander sun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-13 00:00:00.000000000 Z
11
+ date: 2017-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri