fastlane 1.91.0 → 1.92.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -0
  3. data/lib/assets/Plugins.md.erb +8 -0
  4. data/lib/fastlane.rb +1 -0
  5. data/lib/fastlane/action_collector.rb +34 -2
  6. data/lib/fastlane/actions/actions_helper.rb +4 -0
  7. data/lib/fastlane/actions/copy_artifacts.rb +14 -26
  8. data/lib/fastlane/actions/jira.rb +1 -1
  9. data/lib/fastlane/actions/pod_lib_lint.rb +1 -22
  10. data/lib/fastlane/actions/push_to_git_remote.rb +1 -1
  11. data/lib/fastlane/actions/slather.rb +21 -48
  12. data/lib/fastlane/commands_generator.rb +62 -11
  13. data/lib/fastlane/lane_manager.rb +6 -2
  14. data/lib/fastlane/one_off.rb +7 -1
  15. data/lib/fastlane/plugins/plugin_fetcher.rb +59 -0
  16. data/lib/fastlane/plugins/plugin_generator.rb +109 -0
  17. data/lib/fastlane/plugins/plugin_generator_ui.rb +19 -0
  18. data/lib/fastlane/plugins/plugin_info.rb +47 -0
  19. data/lib/fastlane/plugins/plugin_info_collector.rb +120 -0
  20. data/lib/fastlane/plugins/plugin_manager.rb +333 -0
  21. data/lib/fastlane/plugins/plugin_search.rb +46 -0
  22. data/lib/fastlane/plugins/plugins.rb +7 -0
  23. data/lib/fastlane/plugins/templates/Gemfile.erb +3 -0
  24. data/lib/fastlane/plugins/templates/LICENSE.erb +21 -0
  25. data/lib/fastlane/plugins/templates/README.md.erb +31 -0
  26. data/lib/fastlane/plugins/templates/Rakefile.erb +1 -0
  27. data/lib/fastlane/plugins/templates/action.rb.erb +35 -0
  28. data/lib/fastlane/plugins/templates/action_spec.rb.erb +9 -0
  29. data/lib/fastlane/plugins/templates/assets/fastlane_logo.png +0 -0
  30. data/lib/fastlane/plugins/templates/assets/plugin-badge.svg +1 -0
  31. data/lib/fastlane/plugins/templates/dot_gitignore.erb +8 -0
  32. data/lib/fastlane/plugins/templates/dot_rspec.erb +3 -0
  33. data/lib/fastlane/plugins/templates/helper.rb.erb +12 -0
  34. data/lib/fastlane/plugins/templates/plugin.gemspec.erb +26 -0
  35. data/lib/fastlane/plugins/templates/plugin.rb.erb +16 -0
  36. data/lib/fastlane/plugins/templates/spec_helper.rb.erb +8 -0
  37. data/lib/fastlane/plugins/templates/version.rb.erb +5 -0
  38. data/lib/fastlane/runner.rb +34 -12
  39. data/lib/fastlane/version.rb +1 -1
  40. metadata +55 -18
  41. data/lib/fastlane/actions/xcake.rb +0 -35
@@ -0,0 +1,46 @@
1
+ module Fastlane
2
+ class PluginSearch
3
+ require 'word_wrap'
4
+
5
+ def self.print_plugins(search_query: nil)
6
+ if search_query
7
+ UI.message "Looking for fastlane plugins containing '#{search_query}'..."
8
+ else
9
+ UI.message "Listing all available fastlane plugins"
10
+ end
11
+
12
+ plugins = Fastlane::PluginFetcher.fetch_gems(search_query: search_query)
13
+
14
+ if plugins.empty?
15
+ UI.user_error!("Couldn't find any available fastlane plugins containing '#{search_query}'")
16
+ end
17
+
18
+ rows = plugins.collect do |current|
19
+ [
20
+ current.name.green,
21
+ WordWrap.ww(current.info, 50),
22
+ current.downloads
23
+ ]
24
+ end
25
+
26
+ params = {
27
+ rows: rows,
28
+ title: (search_query ? "fastlane plugins '#{search_query}'" : "Available fastlane plugins").green,
29
+ headings: ["Name", "Description", "Downloads"]
30
+ }
31
+ params[:rows] = rows
32
+
33
+ puts ""
34
+ puts Terminal::Table.new(params)
35
+ puts ""
36
+
37
+ if plugins.count == 1
38
+ print_plugin_details(plugins.last)
39
+ end
40
+ end
41
+
42
+ def self.print_plugin_details(plugin)
43
+ UI.message("You can find more information for #{plugin.name} on #{plugin.homepage.green}")
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,7 @@
1
+ require 'fastlane/plugins/plugin_info'
2
+ require 'fastlane/plugins/plugin_generator'
3
+ require 'fastlane/plugins/plugin_generator_ui'
4
+ require 'fastlane/plugins/plugin_info_collector'
5
+ require 'fastlane/plugins/plugin_manager'
6
+ require 'fastlane/plugins/plugin_search'
7
+ require 'fastlane/plugins/plugin_fetcher'
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) <%= Time.now.year %> <%= author %> <<%= email %>>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,31 @@
1
+ # <%= gem_name %> `fastlane` Plugin
2
+
3
+ [![Gem](assets/plugin-badge.svg)](https://rubygems.org/gems/<%= plugin_name %>)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with <%= gem_name %>, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin <%= plugin_name %>
11
+ ```
12
+
13
+ ## About <%= plugin_name %>
14
+
15
+ <%= summary %>
16
+
17
+ ## Issues and Feedback
18
+
19
+ For any other issues and feedback about this plugin, please submit it to this repository.
20
+
21
+ ## Troubleshooting
22
+
23
+ For some , check out the [Plugins Troubleshooting](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md) doc in the main `fastlane` repo.
24
+
25
+ ## Using `fastlane` Plugins
26
+
27
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md) in the main `fastlane` repo.
28
+
29
+ ## About `fastlane`
30
+
31
+ `fastlane` automates building, testing, and releasing your app for beta and app store distributions. To learn more about `fastlane`, check out [fastlane.tools](https://fastlane.tools).
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,35 @@
1
+ module Fastlane
2
+ module Actions
3
+ class <%= plugin_name.fastlane_class %>Action < Action
4
+ def self.run(params)
5
+ UI.message("The <%= plugin_name %> plugin is working!")
6
+ end
7
+
8
+ def self.description
9
+ %q{<%= summary %>}
10
+ end
11
+
12
+ def self.authors
13
+ [%q{<%= author %>}]
14
+ end
15
+
16
+ def self.available_options
17
+ [
18
+ # FastlaneCore::ConfigItem.new(key: :your_option,
19
+ # env_name: "<%= plugin_name.upcase %>_YOUR_OPTION",
20
+ # description: "A description of your option",
21
+ # optional: false,
22
+ # type: String)
23
+ ]
24
+ end
25
+
26
+ def self.is_supported?(platform)
27
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
28
+ # See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
29
+ #
30
+ # [:ios, :mac, :android].include?(platform)
31
+ true
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,9 @@
1
+ describe Fastlane::Actions::<%= plugin_name.fastlane_class %>Action do
2
+ describe '#run' do
3
+ it 'prints a message' do
4
+ expect(Fastlane::UI).to receive(:message).with("The <%= plugin_name %> plugin is working!")
5
+
6
+ Fastlane::Actions::<%= plugin_name.fastlane_class %>Action.run(nil)
7
+ end
8
+ end
9
+ end
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="140" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><mask id="a"><rect width="140" height="20" rx="3" fill="#fff"/></mask><g mask="url(#a)"><path fill="#555" d="M0 0h70v20H0z"/><path fill="#97CA00" d="M70 0h59v20H70z"/><path fill="url(#b)" d="M0 0h140020H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11"><image xlink:href="./fastlane_logo.png" x="5px" y="2.5px" height="15px" width="15px"/><text x="46.5" y="15" fill="#010101" fill-opacity=".3">Plugin</text><text x="46.5" y="14">Plugin</text><text x="101.5" y="15" fill="#010101" fill-opacity=".3">Avaliable</text><text x="101.5" y="14">Avaliable</text></g></svg>
@@ -0,0 +1,8 @@
1
+ *.gem
2
+ Gemfile.lock
3
+
4
+ ## Documentation cache and generated files:
5
+ /.yardoc/
6
+ /_yardoc/
7
+ /doc/
8
+ /rdoc/
@@ -0,0 +1,3 @@
1
+ --require spec_helper
2
+ --color
3
+ --format d
@@ -0,0 +1,12 @@
1
+ module Fastlane
2
+ module Helper
3
+ class <%= plugin_name.fastlane_class %>Helper
4
+ # class methods that you define here become available in your action
5
+ # as `Helper::<%= plugin_name.fastlane_class %>Helper.your_method`
6
+ #
7
+ def self.show_message
8
+ UI.message("Hello from the <%= plugin_name %> plugin helper!")
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require '<%= require_path %>/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = '<%= gem_name %>'
8
+ spec.version = Fastlane::<%= plugin_name.fastlane_class %>::VERSION
9
+ spec.author = %q{<%= author %>}
10
+ spec.email = %q{<%= email %>}
11
+
12
+ spec.summary = %q{<%= summary %>}
13
+ spec.homepage = "https://github.com/<GITHUB_USERNAME>/<%= gem_name %>"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = Dir["lib/**/*"] + %w(README.md LICENSE)
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ['lib']
19
+
20
+ # spec.add_dependency 'your-dependency', '~> 1.0.0'
21
+
22
+ spec.add_development_dependency 'pry'
23
+ spec.add_development_dependency 'bundler'
24
+ spec.add_development_dependency 'rspec'
25
+ spec.add_development_dependency 'fastlane', '>= <%= Fastlane::VERSION %>'
26
+ end
@@ -0,0 +1,16 @@
1
+ require '<%= require_path %>/version'
2
+
3
+ module Fastlane
4
+ module <%= plugin_name.fastlane_class %>
5
+ # Return all .rb files inside the "actions" and "helper" directory
6
+ def self.all_classes
7
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
8
+ end
9
+ end
10
+ end
11
+
12
+ # By default we want to import all available actions and helpers
13
+ # A plugin can contain any number of actions and plugins
14
+ Fastlane::<%= plugin_name.fastlane_class %>.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,8 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+
3
+ # This module is only used to check the environment is currently a testing env
4
+ module SpecHelper
5
+ end
6
+
7
+ require 'fastlane' # to import the Action super class
8
+ require '<%= require_path %>' # import the actual plugin
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module <%= plugin_name.fastlane_class %>
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -96,19 +96,38 @@ module Fastlane
96
96
  begin
97
97
  class_ref = Fastlane::Actions.const_get(class_name)
98
98
  rescue NameError
99
- # Action not found
100
- # Is there a lane under this name?
101
- return self.try_switch_to_lane(method_sym, arguments)
102
99
  end
103
100
 
104
101
  # It's important to *not* have this code inside the rescue block
105
- # otherwise all NameErrors will be caugth and the error message is
102
+ # otherwise all NameErrors will be caught and the error message is
106
103
  # confusing
107
- if class_ref && class_ref.respond_to?(:run)
108
- # Action is available, now execute it
109
- return self.execute_action(method_sym, class_ref, arguments, custom_dir: custom_dir)
104
+ if class_ref
105
+ if class_ref.respond_to?(:run)
106
+ # Action is available, now execute it
107
+ return self.execute_action(method_sym, class_ref, arguments, custom_dir: custom_dir)
108
+ else
109
+ UI.user_error!("Action '#{method_sym}' of class '#{class_name}' was found, but has no `run` method.")
110
+ end
110
111
  else
111
- UI.user_error!("Action '#{method_sym}' of class '#{class_name}' was found, but has no `run` method.")
112
+ # Action was not found
113
+ # Is there a lane under this name?
114
+ begin
115
+ return self.try_switch_to_lane(method_sym, arguments)
116
+ rescue LaneNotAvailableError
117
+ # No lane, no action, let's at least show the correct error message
118
+ if PluginManager.new.plugin_is_added_as_dependency?(PluginManager.plugin_prefix + method_sym.to_s)
119
+ # That's a plugin, but for some reason we can't find it
120
+ UI.user_error!("Plugin '#{method_sym}' was not properly loaded, make sure to follow the plugin docs for troubleshooting: #{PluginManager::TROUBLESHOOTING_URL}")
121
+ elsif Fastlane::Actions.formerly_bundled_actions.include?(method_str)
122
+ # This was a formerly bundled action which is now a plugin.
123
+ UI.verbose(caller.join("\n"))
124
+ UI.user_error!("The action '#{method_sym}' is no longer bundled with fastlane. You can install it using `fastlane add_plugin #{method_sym}`")
125
+ else
126
+ # So there is no plugin under that name, so just show the error message generated by the lane switch
127
+ UI.verbose(caller.join("\n"))
128
+ UI.user_error!("Could not find action or lane '#{method_sym}'. Check out the README for more details: https://github.com/fastlane/fastlane/tree/master/fastlane")
129
+ end
130
+ end
112
131
  end
113
132
  end
114
133
 
@@ -116,6 +135,9 @@ module Fastlane
116
135
  # All the methods that are usually called on execution
117
136
  #
118
137
 
138
+ class LaneNotAvailableError < StandardError
139
+ end
140
+
119
141
  def try_switch_to_lane(new_lane, parameters)
120
142
  block = lanes.fetch(current_platform, {}).fetch(new_lane, nil)
121
143
  block ||= lanes.fetch(nil, {}).fetch(new_lane, nil) # fallback to general lane for multiple platforms
@@ -145,9 +167,7 @@ module Fastlane
145
167
  UI.success "Cruising back to lane '#{original_full}' 🚘".green
146
168
  return result
147
169
  else
148
- # No action and no lane, raising an exception now
149
- UI.error caller.join("\n")
150
- UI.user_error!("Could not find action or lane '#{new_lane}'. Check out the README for more details: https://github.com/fastlane/fastlane/tree/master/fastlane")
170
+ raise LaneNotAvailableError.new
151
171
  end
152
172
  end
153
173
 
@@ -180,7 +200,9 @@ module Fastlane
180
200
  rescue FastlaneCore::Interface::FastlaneError => e # user_error!
181
201
  collector.did_raise_error(method_sym)
182
202
  raise e
183
- rescue => e # high chance this is actually FastlaneCore::Interface::FastlaneCrash, but can be anything else
203
+ rescue Exception => e # rubocop:disable Lint/RescueException
204
+ # high chance this is actually FastlaneCore::Interface::FastlaneCrash, but can be anything else
205
+ # Catches all exceptions, since some plugins might use system exits to get out
184
206
  collector.did_crash(method_sym)
185
207
  raise e
186
208
  end
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '1.91.0'.freeze
2
+ VERSION = '1.92.0.beta1'.freeze
3
3
  DESCRIPTION = "The easiest way to automate building and releasing your iOS and Android apps"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.91.0
4
+ version: 1.92.0.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-24 00:00:00.000000000 Z
11
+ date: 2016-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: krausefx-shenzhen
@@ -156,13 +156,27 @@ dependencies:
156
156
  - - "~>"
157
157
  - !ruby/object:Gem::Version
158
158
  version: 1.4.0
159
+ - !ruby/object:Gem::Dependency
160
+ name: word_wrap
161
+ requirement: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - "~>"
164
+ - !ruby/object:Gem::Version
165
+ version: 1.0.0
166
+ type: :runtime
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - "~>"
171
+ - !ruby/object:Gem::Version
172
+ version: 1.0.0
159
173
  - !ruby/object:Gem::Dependency
160
174
  name: fastlane_core
161
175
  requirement: !ruby/object:Gem::Requirement
162
176
  requirements:
163
177
  - - ">="
164
178
  - !ruby/object:Gem::Version
165
- version: 0.44.2
179
+ version: 0.45.0
166
180
  - - "<"
167
181
  - !ruby/object:Gem::Version
168
182
  version: 1.0.0
@@ -172,7 +186,7 @@ dependencies:
172
186
  requirements:
173
187
  - - ">="
174
188
  - !ruby/object:Gem::Version
175
- version: 0.44.2
189
+ version: 0.45.0
176
190
  - - "<"
177
191
  - !ruby/object:Gem::Version
178
192
  version: 1.0.0
@@ -202,7 +216,7 @@ dependencies:
202
216
  requirements:
203
217
  - - ">="
204
218
  - !ruby/object:Gem::Version
205
- version: 0.27.1
219
+ version: 0.27.0
206
220
  - - "<"
207
221
  - !ruby/object:Gem::Version
208
222
  version: 1.0.0
@@ -212,7 +226,7 @@ dependencies:
212
226
  requirements:
213
227
  - - ">="
214
228
  - !ruby/object:Gem::Version
215
- version: 0.27.1
229
+ version: 0.27.0
216
230
  - - "<"
217
231
  - !ruby/object:Gem::Version
218
232
  version: 1.0.0
@@ -222,7 +236,7 @@ dependencies:
222
236
  requirements:
223
237
  - - ">="
224
238
  - !ruby/object:Gem::Version
225
- version: 1.11.3
239
+ version: 1.11.2
226
240
  - - "<"
227
241
  - !ruby/object:Gem::Version
228
242
  version: 2.0.0
@@ -232,7 +246,7 @@ dependencies:
232
246
  requirements:
233
247
  - - ">="
234
248
  - !ruby/object:Gem::Version
235
- version: 1.11.3
249
+ version: 1.11.2
236
250
  - - "<"
237
251
  - !ruby/object:Gem::Version
238
252
  version: 2.0.0
@@ -382,7 +396,7 @@ dependencies:
382
396
  requirements:
383
397
  - - ">="
384
398
  - !ruby/object:Gem::Version
385
- version: 1.7.0
399
+ version: 1.5.1
386
400
  - - "<"
387
401
  - !ruby/object:Gem::Version
388
402
  version: 2.0.0
@@ -392,7 +406,7 @@ dependencies:
392
406
  requirements:
393
407
  - - ">="
394
408
  - !ruby/object:Gem::Version
395
- version: 1.7.0
409
+ version: 1.5.1
396
410
  - - "<"
397
411
  - !ruby/object:Gem::Version
398
412
  version: 2.0.0
@@ -422,7 +436,7 @@ dependencies:
422
436
  requirements:
423
437
  - - ">="
424
438
  - !ruby/object:Gem::Version
425
- version: 0.7.1
439
+ version: 0.6.1
426
440
  - - "<"
427
441
  - !ruby/object:Gem::Version
428
442
  version: 1.0.0
@@ -432,7 +446,7 @@ dependencies:
432
446
  requirements:
433
447
  - - ">="
434
448
  - !ruby/object:Gem::Version
435
- version: 0.7.1
449
+ version: 0.6.1
436
450
  - - "<"
437
451
  - !ruby/object:Gem::Version
438
452
  version: 1.0.0
@@ -442,7 +456,7 @@ dependencies:
442
456
  requirements:
443
457
  - - ">="
444
458
  - !ruby/object:Gem::Version
445
- version: 0.6.0
459
+ version: 0.5.0
446
460
  - - "<"
447
461
  - !ruby/object:Gem::Version
448
462
  version: 1.0.0
@@ -452,7 +466,7 @@ dependencies:
452
466
  requirements:
453
467
  - - ">="
454
468
  - !ruby/object:Gem::Version
455
- version: 0.6.0
469
+ version: 0.5.0
456
470
  - - "<"
457
471
  - !ruby/object:Gem::Version
458
472
  version: 1.0.0
@@ -676,6 +690,7 @@ files:
676
690
  - lib/assets/AppfileTemplateAndroid
677
691
  - lib/assets/DefaultFastfileTemplate
678
692
  - lib/assets/FastfileTemplateAndroid
693
+ - lib/assets/Plugins.md.erb
679
694
  - lib/assets/completions/completion.bash
680
695
  - lib/assets/completions/completion.sh
681
696
  - lib/assets/completions/completion.zsh
@@ -861,7 +876,6 @@ files:
861
876
  - lib/fastlane/actions/verify_xcode.rb
862
877
  - lib/fastlane/actions/version_bump_podspec.rb
863
878
  - lib/fastlane/actions/version_get_podspec.rb
864
- - lib/fastlane/actions/xcake.rb
865
879
  - lib/fastlane/actions/xcode_install.rb
866
880
  - lib/fastlane/actions/xcode_select.rb
867
881
  - lib/fastlane/actions/xcode_server_get_assets.rb
@@ -897,6 +911,29 @@ files:
897
911
  - lib/fastlane/new_action.rb
898
912
  - lib/fastlane/one_off.rb
899
913
  - lib/fastlane/other_action.rb
914
+ - lib/fastlane/plugins/plugin_fetcher.rb
915
+ - lib/fastlane/plugins/plugin_generator.rb
916
+ - lib/fastlane/plugins/plugin_generator_ui.rb
917
+ - lib/fastlane/plugins/plugin_info.rb
918
+ - lib/fastlane/plugins/plugin_info_collector.rb
919
+ - lib/fastlane/plugins/plugin_manager.rb
920
+ - lib/fastlane/plugins/plugin_search.rb
921
+ - lib/fastlane/plugins/plugins.rb
922
+ - lib/fastlane/plugins/templates/Gemfile.erb
923
+ - lib/fastlane/plugins/templates/LICENSE.erb
924
+ - lib/fastlane/plugins/templates/README.md.erb
925
+ - lib/fastlane/plugins/templates/Rakefile.erb
926
+ - lib/fastlane/plugins/templates/action.rb.erb
927
+ - lib/fastlane/plugins/templates/action_spec.rb.erb
928
+ - lib/fastlane/plugins/templates/assets/fastlane_logo.png
929
+ - lib/fastlane/plugins/templates/assets/plugin-badge.svg
930
+ - lib/fastlane/plugins/templates/dot_gitignore.erb
931
+ - lib/fastlane/plugins/templates/dot_rspec.erb
932
+ - lib/fastlane/plugins/templates/helper.rb.erb
933
+ - lib/fastlane/plugins/templates/plugin.gemspec.erb
934
+ - lib/fastlane/plugins/templates/plugin.rb.erb
935
+ - lib/fastlane/plugins/templates/spec_helper.rb.erb
936
+ - lib/fastlane/plugins/templates/version.rb.erb
900
937
  - lib/fastlane/runner.rb
901
938
  - lib/fastlane/setup/setup.rb
902
939
  - lib/fastlane/setup/setup_android.rb
@@ -919,12 +956,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
919
956
  version: 2.0.0
920
957
  required_rubygems_version: !ruby/object:Gem::Requirement
921
958
  requirements:
922
- - - ">="
959
+ - - ">"
923
960
  - !ruby/object:Gem::Version
924
- version: '0'
961
+ version: 1.3.1
925
962
  requirements: []
926
963
  rubyforge_project:
927
- rubygems_version: 2.4.0
964
+ rubygems_version: 2.4.8
928
965
  signing_key:
929
966
  specification_version: 4
930
967
  summary: The easiest way to automate building and releasing your iOS and Android apps