fastlane 2.111.0 → 2.112.0.beta.20181214200045

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: 0bb525a1fb1e054954e5887b0f51f6aa855b21a9
4
- data.tar.gz: 5b23cd008d9a3d79a2924912f990488d5d8175d4
3
+ metadata.gz: c56f7a139bcf1041722183e4e68205ffef9c2381
4
+ data.tar.gz: 1700cff5bc1974e20efbd5db91f50979c231ee0f
5
5
  SHA512:
6
- metadata.gz: 75e3f59ce44c56a3ab98d64667895ff01dedb5f65afd6b448cc6bc3d66a068eeab058bbce3829d5d8458f84ed59c8c20d11124d764cf355f77e60533e9999261
7
- data.tar.gz: 494269b4350b9b6e73738075e9874992f0314c3cf2ecaae1aeefc530a24cd08847bb7f10f691c169e8a38dc5fcfb03d187beb4c8acfce5e840a00d50a09a2d9a
6
+ metadata.gz: ba2de08be477492a2a6263697d23966e51339246f0b663da980b29e7f516e0b3905a4fe93d05403289122d70fea6f2b6c48d7c9ee17b6bd463b29a98c9a40338
7
+ data.tar.gz: ce9c6e37f1bde93489a5fb47516febe9825f866669893a9c525c7bdd4ca2b60d6fa20a7048836d47a82dd5b3cab3c025ada03e6b3b30315d9334e9765765e140
@@ -0,0 +1,59 @@
1
+ module Fastlane
2
+ module Actions
3
+ module SharedValues
4
+ end
5
+
6
+ # Raises an exception and stop the lane execution if not using bundle exec to run fastlane
7
+ class EnsureBundleExecAction < Action
8
+ def self.run(params)
9
+ return if PluginManager.new.gemfile_path.nil?
10
+ if FastlaneCore::Helper.bundler?
11
+ UI.success("Using bundled fastlane ✅")
12
+ else
13
+ UI.user_error!("fastlane detected a Gemfile in the current directory. However it seems like you don't use `bundle exec`. Use `bundle exec fastlane #{ARGV.join(' ')}`")
14
+ end
15
+ end
16
+
17
+ #####################################################
18
+ # @!group Documentation
19
+ #####################################################
20
+
21
+ def self.description
22
+ "Raises an exception if not using `bundle exec` to run fastlane"
23
+ end
24
+
25
+ def self.details
26
+ [
27
+ "This action will check if you are using bundle exec to run fastlane.",
28
+ "You can put it into `before_all` and make sure that fastlane is run using `bundle exec fastlane` command."
29
+ ].join("\n")
30
+ end
31
+
32
+ def self.available_options
33
+ []
34
+ end
35
+
36
+ def self.output
37
+ []
38
+ end
39
+
40
+ def self.author
41
+ ['rishabhtayal']
42
+ end
43
+
44
+ def self.example_code
45
+ [
46
+ "ensure_bundle_exec"
47
+ ]
48
+ end
49
+
50
+ def self.category
51
+ :misc
52
+ end
53
+
54
+ def self.is_supported?(platform)
55
+ true
56
+ end
57
+ end
58
+ end
59
+ end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.111.0'.freeze
2
+ VERSION = '2.112.0.beta.20181214200045'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  RUBOCOP_REQUIREMENT = '0.49.1'.freeze
@@ -193,7 +193,7 @@ module Spaceship
193
193
  # Create a new object based on a hash.
194
194
  # This is used to create a new object based on the server response.
195
195
  def factory(attrs)
196
- # available values of `distributionMethod` at this point: ['adhoc', 'store', 'limited', 'direct']
196
+ # available values of `distributionMethod` at this point: ['adhoc', 'store', 'limited', 'direct', 'inhouse']
197
197
  klass = case attrs['distributionMethod']
198
198
  when 'limited'
199
199
  Development
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.111.0
4
+ version: 2.112.0.beta.20181214200045
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kohki Miki
@@ -940,7 +940,6 @@ files:
940
940
  - deliver/lib/deliver/upload_price_tier.rb
941
941
  - deliver/lib/deliver/upload_screenshots.rb
942
942
  - fastlane/README.md
943
- - fastlane/lib/.DS_Store
944
943
  - fastlane/lib/assets/ActionDetails.md.erb
945
944
  - fastlane/lib/assets/Actions.md.erb
946
945
  - fastlane/lib/assets/AppfileTemplate
@@ -959,10 +958,8 @@ files:
959
958
  - fastlane/lib/assets/s3_plist_template.erb
960
959
  - fastlane/lib/assets/s3_version_template.erb
961
960
  - fastlane/lib/fastlane.rb
962
- - fastlane/lib/fastlane/.DS_Store
963
961
  - fastlane/lib/fastlane/action.rb
964
962
  - fastlane/lib/fastlane/action_collector.rb
965
- - fastlane/lib/fastlane/actions/.DS_Store
966
963
  - fastlane/lib/fastlane/actions/README.md
967
964
  - fastlane/lib/fastlane/actions/actions_helper.rb
968
965
  - fastlane/lib/fastlane/actions/adb.rb
@@ -1016,8 +1013,6 @@ files:
1016
1013
  - fastlane/lib/fastlane/actions/deliver.rb
1017
1014
  - fastlane/lib/fastlane/actions/deploygate.rb
1018
1015
  - fastlane/lib/fastlane/actions/device_grid/README.md
1019
- - fastlane/lib/fastlane/actions/docs/.DS_Store
1020
- - fastlane/lib/fastlane/actions/docs/assets/.DS_Store
1021
1016
  - fastlane/lib/fastlane/actions/docs/build_ios_app.md
1022
1017
  - fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md
1023
1018
  - fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md
@@ -1038,6 +1033,7 @@ files:
1038
1033
  - fastlane/lib/fastlane/actions/download_from_play_store.rb
1039
1034
  - fastlane/lib/fastlane/actions/dsym_zip.rb
1040
1035
  - fastlane/lib/fastlane/actions/echo.rb
1036
+ - fastlane/lib/fastlane/actions/ensure_bundle_exec.rb
1041
1037
  - fastlane/lib/fastlane/actions/ensure_git_branch.rb
1042
1038
  - fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
1043
1039
  - fastlane/lib/fastlane/actions/ensure_no_debug_code.rb
@@ -1264,7 +1260,6 @@ files:
1264
1260
  - fastlane/lib/fastlane/server/json_return_value_processor.rb
1265
1261
  - fastlane/lib/fastlane/server/socket_server.rb
1266
1262
  - fastlane/lib/fastlane/server/socket_server_action_command_executor.rb
1267
- - fastlane/lib/fastlane/setup/.DS_Store
1268
1263
  - fastlane/lib/fastlane/setup/setup.rb
1269
1264
  - fastlane/lib/fastlane/setup/setup_android.rb
1270
1265
  - fastlane/lib/fastlane/setup/setup_ios.rb
@@ -1310,10 +1305,8 @@ files:
1310
1305
  - fastlane/swift/main.swift
1311
1306
  - fastlane/swift/upgrade_manifest.json
1312
1307
  - fastlane_core/README.md
1313
- - fastlane_core/lib/.DS_Store
1314
1308
  - fastlane_core/lib/assets/XMLTemplate.xml.erb
1315
1309
  - fastlane_core/lib/fastlane_core.rb
1316
- - fastlane_core/lib/fastlane_core/.DS_Store
1317
1310
  - fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb
1318
1311
  - fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb
1319
1312
  - fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb
@@ -1408,12 +1401,10 @@ files:
1408
1401
  - gym/lib/gym/xcodebuild_fixes/README.md
1409
1402
  - gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb
1410
1403
  - match/README.md
1411
- - match/lib/.DS_Store
1412
1404
  - match/lib/assets/MatchfileTemplate
1413
1405
  - match/lib/assets/MatchfileTemplate.swift
1414
1406
  - match/lib/assets/READMETemplate.md
1415
1407
  - match/lib/match.rb
1416
- - match/lib/match/.DS_Store
1417
1408
  - match/lib/match/change_password.rb
1418
1409
  - match/lib/match/commands_generator.rb
1419
1410
  - match/lib/match/encryption.rb
@@ -1688,24 +1679,24 @@ metadata:
1688
1679
  post_install_message:
1689
1680
  rdoc_options: []
1690
1681
  require_paths:
1682
+ - produce/lib
1683
+ - spaceship/lib
1691
1684
  - credentials_manager/lib
1692
- - pem/lib
1693
- - snapshot/lib
1694
- - frameit/lib
1695
- - match/lib
1685
+ - precheck/lib
1696
1686
  - fastlane_core/lib
1697
- - deliver/lib
1687
+ - pilot/lib
1698
1688
  - scan/lib
1699
- - supply/lib
1700
- - cert/lib
1701
1689
  - fastlane/lib
1702
- - spaceship/lib
1703
- - pilot/lib
1704
1690
  - gym/lib
1705
- - precheck/lib
1691
+ - match/lib
1692
+ - snapshot/lib
1706
1693
  - screengrab/lib
1694
+ - deliver/lib
1707
1695
  - sigh/lib
1708
- - produce/lib
1696
+ - frameit/lib
1697
+ - pem/lib
1698
+ - cert/lib
1699
+ - supply/lib
1709
1700
  required_ruby_version: !ruby/object:Gem::Requirement
1710
1701
  requirements:
1711
1702
  - - ">="
@@ -1713,9 +1704,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
1713
1704
  version: 2.0.0
1714
1705
  required_rubygems_version: !ruby/object:Gem::Requirement
1715
1706
  requirements:
1716
- - - ">="
1707
+ - - ">"
1717
1708
  - !ruby/object:Gem::Version
1718
- version: '0'
1709
+ version: 1.3.1
1719
1710
  requirements: []
1720
1711
  rubyforge_project:
1721
1712
  rubygems_version: 2.6.8
Binary file
Binary file
Binary file
Binary file
data/match/lib/.DS_Store DELETED
Binary file
Binary file