fastlane 2.63.0.beta.20171027010003 → 2.63.0.beta.20171028010003

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: 27411efe0af1b5da1306fc3963686d2023eaeece
4
- data.tar.gz: ea01bfb262f7c2e68a3b1a7af162778f281f8af2
3
+ metadata.gz: 25b61a5d5fa3eb562d646f29dfb1b7405a878952
4
+ data.tar.gz: 3bc7d4a8c9a71eb450eceaa88bd06004900a5c9d
5
5
  SHA512:
6
- metadata.gz: fa818bfe9143d441509f2a1e9c216628456cdf3e3d529a737a4d42f6e8a2396310c14f90783a20fe8a6ccad93903e9c4e4d8644287bf42ccf19884f66d5e06cf
7
- data.tar.gz: 3e7405094e04325f52d205f72fff02c80e3d2bef0bee231486571bea645e0aabcc6e5794da6af1eb3880975af4586b3eab5aa7240a0f4afe621099a8acbdbea0
6
+ metadata.gz: 98fbfadcbd951f472b8fc563a50feb611aefef7a6eb823da90f9e8b7ef763a2a450e94b944fe2e01a050f93c93f3394066e75d45de533edeaf58f3229c25354b
7
+ data.tar.gz: 79cd52259a2ae322c54cbda2b15a9e979fa8e990728961254ab9b95ca94c854780e567eea438b9da43129d3b4d7c8c9d4aea8660213fc60a1435fc65f1ee795a
@@ -26,6 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.add_development_dependency 'pry'
27
27
  spec.add_development_dependency 'bundler'
28
28
  spec.add_development_dependency 'rspec'
29
+ spec.add_development_dependency 'rspec_junit_formatter'
29
30
  spec.add_development_dependency 'rake'
30
31
  spec.add_development_dependency 'rubocop', '<%= Fastlane::RUBOCOP_REQUIREMENT %>'
31
32
  spec.add_development_dependency 'simplecov'
@@ -0,0 +1,43 @@
1
+ # Ruby CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
+ #
5
+ version: 2
6
+ jobs:
7
+ build:
8
+ docker:
9
+ # specify the version you desire here
10
+ - image: circleci/ruby:2.4.2
11
+
12
+ working_directory: ~/repo
13
+
14
+ steps:
15
+ - checkout
16
+
17
+ # Download and cache dependencies
18
+ - restore_cache:
19
+ keys:
20
+ - v1-dependencies-{{ checksum "Gemfile" }}
21
+ # fallback to using the latest cache if no exact match is found
22
+ - v1-dependencies-
23
+
24
+ - run:
25
+ name: install dependencies
26
+ command: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle
27
+
28
+ - save_cache:
29
+ paths:
30
+ - ./vendor
31
+ key: v1-dependencies-{{ checksum "Gemfile" }}
32
+
33
+ # run tests!
34
+ - run:
35
+ name: run tests
36
+ command: bundle exec rake
37
+
38
+ # collect reports
39
+ - store_test_results:
40
+ path: ~/repo/test-results
41
+ - store_artifacts:
42
+ path: ~/repo/test-results
43
+ destination: test-results
@@ -9,3 +9,4 @@ Gemfile.lock
9
9
  fastlane/README.md
10
10
  fastlane/report.xml
11
11
  coverage
12
+ test-results
@@ -1,3 +1,5 @@
1
1
  --require spec_helper
2
2
  --color
3
3
  --format d
4
+ --format RspecJunitFormatter
5
+ --out test-results/rspec/rspec.xml
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.63.0.beta.20171027010003'.freeze
2
+ VERSION = '2.63.0.beta.20171028010003'.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
@@ -46,6 +46,56 @@ This gem contains all shared classes and code:
46
46
 
47
47
  You can hide the inline changelog by setting the `FASTLANE_HIDE_CHANGELOG` environment variable
48
48
 
49
+ ## Timestamps
50
+
51
+ To hide timestamps in each row, set the `FASTLANE_HIDE_TIMESTAMP` environment variable.
52
+
53
+ ## Interacting with the user
54
+
55
+ Instead of using `puts`, `raise` and `gets`, please use the helper class `UI` across all fastlane tools:
56
+
57
+ ```ruby
58
+ UI.message "Neutral message (usually white)"
59
+ UI.success "Successfully finished processing (usually green)"
60
+ UI.error "Wahaha, what's going on here! (usually red)"
61
+ UI.important "Make sure to use Windows (usually yellow)"
62
+
63
+ UI.header "Inputs" # a big box
64
+
65
+ name = UI.input("What's your name? ")
66
+ if UI.confirm("Are you '#{name}'?")
67
+ UI.success "Oh yeah"
68
+ else
69
+ UI.error "Wups, invalid"
70
+ end
71
+
72
+ UI.password("Your password please: ") # password inputs are hidden
73
+
74
+ ###### A "Dropdown" for the user
75
+ project = UI.select("Select your project: ", ["Test Project", "Test Workspace"])
76
+
77
+ UI.success("Okay #{name}, you selected '#{project}'")
78
+
79
+ ###### To run a command use
80
+ FastlaneCore::CommandExecutor.execute(command: "ls",
81
+ print_all: true,
82
+ error: proc do |error_output|
83
+ # handle error here
84
+ end)
85
+
86
+ ###### or if you just want to receive a simple value use this only if the command doesn't take long
87
+ diff = Helper.backticks("git diff")
88
+
89
+ ###### fastlane "crash" because of a user error everything that is caused by the user and is not unexpected
90
+ UI.user_error!("You don't have a project in the current directory")
91
+
92
+ ###### an actual crash when something unexpected happened
93
+ UI.crash!("Network timeout")
94
+
95
+ ###### a deprecation message
96
+ UI.deprecated("The '--key' parameter is deprecated")
97
+ ```
98
+
49
99
  # Code of Conduct
50
100
  Help us keep `fastlane` open and inclusive. Please read and follow our [Code of Conduct](https://github.com/fastlane/fastlane/blob/master/CODE_OF_CONDUCT.md).
51
101
 
@@ -50,6 +50,9 @@ module Spaceship
50
50
  # for release_on_approval to be used.
51
51
  attr_accessor :auto_release_date
52
52
 
53
+ # @return (Bool) Should the rating of the app be reset?
54
+ attr_accessor :ratings_reset
55
+
53
56
  # @return (Bool)
54
57
  attr_accessor :can_beta_test
55
58
 
@@ -208,6 +211,7 @@ module Spaceship
208
211
  'largeAppIcon.value.url' => :app_icon_url,
209
212
  'releaseOnApproval.value' => :release_on_approval,
210
213
  'autoReleaseDate.value' => :auto_release_date,
214
+ 'ratingsReset.value' => :ratings_reset,
211
215
  'status' => :raw_status,
212
216
  'preReleaseBuild.buildVersion' => :build_version,
213
217
  'supportsAppleWatch' => :supports_apple_watch,
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.63.0.beta.20171027010003
4
+ version: 2.63.0.beta.20171028010003
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -15,7 +15,7 @@ authors:
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
- date: 2017-10-27 00:00:00.000000000 Z
18
+ date: 2017-10-28 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -1137,6 +1137,7 @@ files:
1137
1137
  - fastlane/lib/fastlane/plugins/plugin_update_manager.rb
1138
1138
  - fastlane/lib/fastlane/plugins/plugins.rb
1139
1139
  - fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb
1140
+ - fastlane/lib/fastlane/plugins/template/.circleci/config.yml
1140
1141
  - fastlane/lib/fastlane/plugins/template/.gitignore
1141
1142
  - fastlane/lib/fastlane/plugins/template/.rspec
1142
1143
  - fastlane/lib/fastlane/plugins/template/.rubocop.yml
@@ -1145,7 +1146,6 @@ files:
1145
1146
  - fastlane/lib/fastlane/plugins/template/LICENSE.erb
1146
1147
  - fastlane/lib/fastlane/plugins/template/README.md.erb
1147
1148
  - fastlane/lib/fastlane/plugins/template/Rakefile
1148
- - fastlane/lib/fastlane/plugins/template/circle.yml
1149
1149
  - fastlane/lib/fastlane/plugins/template/fastlane/Fastfile.erb
1150
1150
  - fastlane/lib/fastlane/plugins/template/fastlane/Pluginfile.erb
1151
1151
  - fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb
@@ -1,9 +0,0 @@
1
- test:
2
- override:
3
- - bundle exec rake
4
- machine:
5
- ruby:
6
- version: 2.2.4
7
- # Enable xcode below if you need macOS
8
- # xcode:
9
- # version: "7.3"