fastlane 1.101.0 → 1.102.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: 5df8150feaee8ad3fb0a24f99f5448f6de813ee0
4
- data.tar.gz: b83e90b4b915b1260c6cd90e0a99629506d2abcb
3
+ metadata.gz: 27005bbd56fe8f3177f6c55a579901a451f824fb
4
+ data.tar.gz: 5f673f3759eb6c0e976d07bbca6f0cf980386ac3
5
5
  SHA512:
6
- metadata.gz: 3a4c3a375508c106d336a1550f4da41e2560590d5a4f1c9b106ffa786dfeb9ff1870e59b491d711d5c1bdabc4113adcdaef64f2046fea1051e452dd1f0533bf2
7
- data.tar.gz: e85785e5fad78ffa4a50c38f002a44063b2d1a0a6926300cc7135734a826d86d5c19bf6d73c8f613bfd023d1757cb11869f1f27caf174f6b6389ac806c7be645
6
+ metadata.gz: 5e3ebe918ce03d25857777a02afae4d25f3a9851b69b550584a408bff9d4f59758234889d36355371cfc997bfc4867db982b87eebd8c35029fb10690d540d6b6
7
+ data.tar.gz: 351e2a08014ad679d2823bfcb631f6752f8e910b8f22bcd38bd2796947937817fbd72f75ce10c9cd105c44aa4029261e07b49f88bea4dcc5ce96746d83d97852
data/README.md CHANGED
@@ -55,7 +55,7 @@ Define different environments (`lanes`) in your `Fastfile`: Examples are: `appst
55
55
  You define a `lane` like this (more details about the commands in the [Actions](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md) documentation):
56
56
 
57
57
  ```ruby
58
- lane :appstore do
58
+ lane :release do
59
59
  increment_build_number
60
60
  cocoapods
61
61
  scan
@@ -71,7 +71,7 @@ end
71
71
  To launch the `appstore` lane, just run:
72
72
 
73
73
  ```sh
74
- fastlane appstore
74
+ fastlane release
75
75
  ```
76
76
 
77
77
  | fastlane
@@ -39,7 +39,7 @@ platform :ios do
39
39
  end
40
40
 
41
41
  desc "Deploy a new version to the App Store"
42
- lane :appstore do
42
+ lane :release do
43
43
  # match(type: "appstore")
44
44
  snapshot
45
45
  gym[[SCHEME]] # Build your app - more options available
@@ -24,6 +24,7 @@ require 'fastlane/plugins/plugins'
24
24
  module Fastlane
25
25
  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
26
26
  UI = FastlaneCore::UI
27
+ ROOT = Pathname.new(File.expand_path('../..', __FILE__))
27
28
 
28
29
  class << self
29
30
  def load_actions
@@ -1,5 +1,4 @@
1
1
  require 'fileutils'
2
- require 'shellwords'
3
2
 
4
3
  module Fastlane
5
4
  module Actions
@@ -17,8 +16,7 @@ module Fastlane
17
16
  # If any of the paths include "*", we assume that we are referring to the Unix entries
18
17
  # e.g /tmp/fastlane/* refers to all the files in /tmp/fastlane
19
18
  # We use Dir.glob to expand all those paths, this would create an array of arrays though, so flatten
20
- # Lastly, we shell escape everything in case they contain incompatible symbols (e.g. spaces)
21
- artifacts = artifacts_to_search.map { |f| f.include?("*") ? Dir.glob(f) : f }.flatten.map(&:shellescape)
19
+ artifacts = artifacts_to_search.map { |f| f.include?("*") ? Dir.glob(f) : f }.flatten
22
20
 
23
21
  UI.verbose("Copying artifacts #{artifacts.join(', ')} to #{target_path}")
24
22
  UI.verbose(params[:keep_original] ? "Keeping original files" : "Not keeping original files")
@@ -5,9 +5,14 @@ module Fastlane
5
5
  Actions.verify_gem!('danger')
6
6
  cmd = []
7
7
 
8
- cmd << ['bundle exec'] if File.exist?('Gemfile') && params[:use_bundle_exec]
9
- cmd << ['danger']
10
- cmd << ['--verbose'] if params[:verbose]
8
+ cmd << 'bundle exec' if File.exist?('Gemfile') && params[:use_bundle_exec]
9
+ cmd << 'danger'
10
+ cmd << '--verbose' if params[:verbose]
11
+
12
+ danger_id = params[:danger_id]
13
+ dangerfile = params[:dangerfile]
14
+ cmd << "--danger_id=#{danger_id}" if danger_id
15
+ cmd << "--dangerfile=#{dangerfile}" if dangerfile
11
16
 
12
17
  ENV['DANGER_GITHUB_API_TOKEN'] = params[:github_api_token] if params[:github_api_token]
13
18
 
@@ -34,6 +39,16 @@ module Fastlane
34
39
  description: "Show more debugging information",
35
40
  is_string: false,
36
41
  default_value: false),
42
+ FastlaneCore::ConfigItem.new(key: :danger_id,
43
+ env_name: "FL_DANGER_ID",
44
+ description: "The identifier of this Danger instance",
45
+ is_string: true,
46
+ optional: true),
47
+ FastlaneCore::ConfigItem.new(key: :dangerfile,
48
+ env_name: "FL_DANGER_DANGERFILE",
49
+ description: "The location of your Dangerfile",
50
+ is_string: true,
51
+ optional: true),
37
52
  FastlaneCore::ConfigItem.new(key: :github_api_token,
38
53
  env_name: "FL_DANGER_GITHUB_API_TOKEN",
39
54
  description: "GitHub API token for danger",
@@ -50,7 +50,7 @@ module Fastlane
50
50
  optional: true,
51
51
  verify_block: proc do |value|
52
52
  UI.user_error!("Couldn't find file at path '#{value}'") unless File.exist?(value)
53
- UI.user_error!("File must be a `.podspec`") unless value.end_with?(".podspec")
53
+ UI.user_error!("File must be a `.podspec` or `.podspec.json`") unless value.end_with?(".podspec", ".podspec.json")
54
54
  end),
55
55
  FastlaneCore::ConfigItem.new(key: :repo,
56
56
  description: "The repo you want to push. Pushes to Trunk by default",
@@ -6,7 +6,7 @@ module Fastlane
6
6
  require 'sigh'
7
7
 
8
8
  # try to resign the ipa
9
- if Sigh::Resign.resign(params[:ipa], params[:signing_identity], params[:provisioning_profile], params[:entitlements], params[:version], params[:display_name], params[:short_version], params[:bundle_version], params[:bundle_id])
9
+ if Sigh::Resign.resign(params[:ipa], params[:signing_identity], params[:provisioning_profile], params[:entitlements], params[:version], params[:display_name], params[:short_version], params[:bundle_version], params[:bundle_id], params[:use_app_entitlements], params[:keychain_path])
10
10
  UI.success('Successfully re-signed .ipa 🔏.')
11
11
  else
12
12
  UI.user_error!("Failed to re-sign .ipa")
@@ -46,6 +46,7 @@ module Fastlane
46
46
  FastlaneCore::ConfigItem.new(key: :entitlements,
47
47
  env_name: "FL_RESIGN_ENTITLEMENTS",
48
48
  description: "Path to the entitlement file to use, e.g. \"myApp/MyApp.entitlements\"",
49
+ conflicting_options: [:use_app_entitlements],
49
50
  is_string: true,
50
51
  optional: true),
51
52
  FastlaneCore::ConfigItem.new(key: :provisioning_profile,
@@ -65,7 +66,7 @@ module Fastlane
65
66
  end),
66
67
  FastlaneCore::ConfigItem.new(key: :version,
67
68
  env_name: "FL_RESIGN_VERSION",
68
- description: "Version number to force resigned ipa to use. Updates both CFBundleShortVersionString and CFBundleIdentifier values in Info.plist. Applies for main app and all nested apps or extensions",
69
+ description: "Version number to force resigned ipa to use.\nUpdates both CFBundleShortVersionString and CFBundleIdentifier values in Info.plist.\nApplies for main app and all nested apps or extensions",
69
70
  conflicting_options: [:short_version, :bundle_version],
70
71
  is_string: true,
71
72
  optional: true),
@@ -90,6 +91,17 @@ module Fastlane
90
91
  env_name: "FL_RESIGN_BUNDLE_ID",
91
92
  description: "Set new bundle ID during resign",
92
93
  is_string: true,
94
+ optional: true),
95
+ FastlaneCore::ConfigItem.new(key: :use_app_entitlements,
96
+ env_name: "FL_USE_APP_ENTITLEMENTS",
97
+ description: "Extract app bundle codesigning entitlements\nand combine with entitlements from new provisionin profile",
98
+ conflicting_options: [:entitlements],
99
+ is_string: false,
100
+ optional: true),
101
+ FastlaneCore::ConfigItem.new(key: :keychain_path,
102
+ env_name: "FL_RESIGN_KEYCHAIN_PATH",
103
+ description: "Provide a path to a keychain file that should be used by /usr/bin/codesign",
104
+ is_string: true,
93
105
  optional: true)
94
106
  ]
95
107
  end
@@ -3,6 +3,7 @@ module Fastlane
3
3
  module SharedValues
4
4
  SCAN_DERIVED_DATA_PATH = :SCAN_DERIVED_DATA_PATH
5
5
  SCAN_GENERATED_PLIST_FILE = :SCAN_GENERATED_PLIST_FILE
6
+ SCAN_GENERATED_PLIST_FILES = :SCAN_GENERATED_PLIST_FILES
6
7
  end
7
8
 
8
9
  class ScanAction < Action
@@ -13,7 +14,7 @@ module Fastlane
13
14
  destination = values[:destination] # save destination value which can be later overridden
14
15
  Scan.config = values # we set this here to auto-detect missing values, which we need later on
15
16
  unless values[:derived_data_path].to_s.empty?
16
- plist_files_before = Dir["#{values[:derived_data_path]}/**/Logs/Test/*TestSummaries.plist"]
17
+ plist_files_before = test_summary_filenames(values[:derived_data_path])
17
18
  end
18
19
 
19
20
  FastlaneCore::UpdateChecker.start_looking_for_update('scan') unless Helper.is_test?
@@ -29,8 +30,10 @@ module Fastlane
29
30
  ensure
30
31
  unless values[:derived_data_path].to_s.empty?
31
32
  Actions.lane_context[SharedValues::SCAN_DERIVED_DATA_PATH] = values[:derived_data_path]
32
- plist_files_after = Dir["#{values[:derived_data_path]}/**/Logs/Test/*TestSummaries.plist"]
33
- Actions.lane_context[SharedValues::SCAN_GENERATED_PLIST_FILE] = (plist_files_after - plist_files_before).last
33
+ plist_files_after = test_summary_filenames(values[:derived_data_path])
34
+ all_test_summaries = (plist_files_after - plist_files_before)
35
+ Actions.lane_context[SharedValues::SCAN_GENERATED_PLIST_FILES] = all_test_summaries
36
+ Actions.lane_context[SharedValues::SCAN_GENERATED_PLIST_FILE] = all_test_summaries.last
34
37
  end
35
38
 
36
39
  FastlaneCore::UpdateChecker.show_update_status('scan', Scan::VERSION)
@@ -63,6 +66,12 @@ module Fastlane
63
66
  def self.is_supported?(platform)
64
67
  [:ios, :mac].include? platform
65
68
  end
69
+
70
+ private_class_method
71
+
72
+ def self.test_summary_filenames(derived_data_path)
73
+ Dir["#{derived_data_path}/**/Logs/Test/*TestSummaries.plist"]
74
+ end
66
75
  end
67
76
  end
68
77
  end
@@ -31,7 +31,7 @@ module Fastlane
31
31
 
32
32
  # Keychain
33
33
  if params[:unlock_keychain] && params[:keychain_path]
34
- keychain_path = File.expand_path(params[:keychain_path])
34
+ keychain_path = params[:keychain_path]
35
35
  UI.message "Unlocking keychain: \"#{keychain_path}\"."
36
36
  Actions::UnlockKeychainAction.run(
37
37
  path: keychain_path,
@@ -141,8 +141,9 @@ module Fastlane
141
141
  }
142
142
  end
143
143
 
144
- # lane
145
- if should_add_payload[:lane]
144
+ # Add the lane to the Slack message
145
+ # This might be nil, if slack is called as "one-off" action
146
+ if should_add_payload[:lane] && Actions.lane_context[Actions::SharedValues::LANE_NAME]
146
147
  slack_attachment[:fields] << {
147
148
  title: 'Lane',
148
149
  value: Actions.lane_context[Actions::SharedValues::LANE_NAME],
@@ -33,12 +33,19 @@ module Fastlane
33
33
  "Authority=Apple Root CA",
34
34
  "TeamIdentifier=59GAB85EFG"
35
35
  ],
36
- [ # Found on Xcode installations downloaded from developer.apple.com
36
+ [ # Found on Xcode installations (pre-Xcode 8) downloaded from developer.apple.com
37
37
  "Identifier=com.apple.dt.Xcode",
38
38
  "Authority=Software Signing",
39
39
  "Authority=Apple Code Signing Certification Authority",
40
40
  "Authority=Apple Root CA",
41
41
  "TeamIdentifier=not set"
42
+ ],
43
+ [ # Found on Xcode installations (post-Xcode 8) downloaded from developer.apple.com
44
+ "Identifier=com.apple.dt.Xcode",
45
+ "Authority=Software Signing",
46
+ "Authority=Apple Code Signing Certification Authority",
47
+ "Authority=Apple Root CA",
48
+ "TeamIdentifier=59GAB85EFG"
42
49
  ]
43
50
  ]
44
51
 
@@ -146,7 +146,7 @@ module Fastlane
146
146
  end
147
147
 
148
148
  # By default we put xcodebuild.log in the Logs folder
149
- buildlog_path ||= File.expand_path("~/Library/Logs/fastlane/xcbuild/#{Time.now.strftime('%F')}/#{Process.pid}")
149
+ buildlog_path ||= File.expand_path("#{FastlaneCore::Helper.buildlog_path}/fastlane/xcbuild/#{Time.now.strftime('%F')}/#{Process.pid}")
150
150
 
151
151
  # Joins args into space delimited string
152
152
  xcodebuild_args = xcodebuild_args.join(" ")
@@ -13,7 +13,7 @@ module Fastlane
13
13
  FileUtils.mkdir_p fastlane_conf_dir
14
14
 
15
15
  # then copy all of the completions files into it from the gem
16
- completion_script_path = File.join(Fastlane::Helper.gem_path('fastlane'), 'lib', 'assets', 'completions')
16
+ completion_script_path = File.join(Fastlane::ROOT, 'lib', 'assets', 'completions')
17
17
  FileUtils.cp_r completion_script_path, fastlane_conf_dir
18
18
 
19
19
  UI.success "Copied! To use auto complete for fastlane, add the following line to your favorite rc file (e.g. ~/.bashrc)"
@@ -2,7 +2,7 @@ module Fastlane
2
2
  class ErbTemplateHelper
3
3
  require "erb"
4
4
  def self.load(template_name)
5
- path = "#{Helper.gem_path('fastlane')}/lib/assets/#{template_name}.erb"
5
+ path = "#{Fastlane::ROOT}/lib/assets/#{template_name}.erb"
6
6
  load_from_path(path)
7
7
  end
8
8
 
@@ -17,7 +17,7 @@ module Fastlane
17
17
  UI.user_error!("Could not find submit binary in crashlytics bundle at path '#{params[:crashlytics_path]}'") unless submit_binary
18
18
 
19
19
  command = []
20
- command << submit_binary
20
+ command << submit_binary.shellescape
21
21
  command << params[:api_token]
22
22
  command << params[:build_secret]
23
23
  command << "-ipaPath '#{params[:ipa_path]}'"
@@ -9,7 +9,7 @@ module Fastlane
9
9
  path = File.join(containing_folder, 'report.xml')
10
10
 
11
11
  @steps = results
12
- xml_path = File.join(Helper.gem_path("fastlane"), "lib/assets/report_template.xml.erb")
12
+ xml_path = File.join(Fastlane::ROOT, "lib/assets/report_template.xml.erb")
13
13
  xml = ERB.new(File.read(xml_path)).result(binding) # http://www.rrn.dk/rubys-erb-templating-system
14
14
 
15
15
  xml = xml.gsub('system_', 'system-').delete("\e") # Jenkins can not parse 'ESC' symbol
@@ -18,7 +18,7 @@ module Fastlane
18
18
  end
19
19
 
20
20
  def self.generate_action(name)
21
- template = File.read("#{Helper.gem_path('fastlane')}/lib/assets/custom_action_template.rb")
21
+ template = File.read("#{Fastlane::ROOT}/lib/assets/custom_action_template.rb")
22
22
  template.gsub!('[[NAME]]', name)
23
23
  template.gsub!('[[NAME_UP]]', name.upcase)
24
24
  template.gsub!('[[NAME_CLASS]]', name.fastlane_class + 'Action')
@@ -26,8 +26,7 @@ module Fastlane
26
26
  def self.update_md_file!
27
27
  @plugins = fetch_gems
28
28
 
29
- lib_path = FastlaneCore::Helper.gem_path('fastlane')
30
- template_path = File.join(lib_path, "lib/assets/AvailablePlugins.md.erb")
29
+ template_path = File.join(Fastlane::ROOT, "lib/assets/AvailablePlugins.md.erb")
31
30
  md = ERB.new(File.read(template_path), nil, '<>').result(binding) # http://www.rrn.dk/rubys-erb-templating-system
32
31
 
33
32
  puts md
@@ -145,7 +145,7 @@ module Fastlane
145
145
  pretty = [new_lane]
146
146
  pretty = [current_platform, new_lane] if current_platform
147
147
  Actions.execute_action("Switch to #{pretty.join(' ')} lane") {} # log the action
148
- UI.success "Cruising over to lane '#{pretty.join(' ')}' 🚖"
148
+ UI.message "Cruising over to lane '#{pretty.join(' ')}' 🚖"
149
149
 
150
150
  # Actually switch lane now
151
151
  self.current_lane = new_lane
@@ -157,7 +157,7 @@ module Fastlane
157
157
  # Call the platform specific after block and then the general one
158
158
  execute_flow_block(after_each_blocks, current_platform, new_lane, parameters)
159
159
 
160
- UI.success "Cruising back to lane '#{original_full}' 🚘".green
160
+ UI.message "Cruising back to lane '#{original_full}' 🚘"
161
161
  return result
162
162
  else
163
163
  raise LaneNotAvailableError.new, "Lane not found"
@@ -31,7 +31,7 @@ module Fastlane
31
31
  puts "Follow the Setup Guide on how to get the Json file: https://github.com/fastlane/fastlane/tree/master/supply#setup".yellow
32
32
  json_key_file = ask('Path to the json secret file: '.yellow)
33
33
 
34
- template = File.read("#{Helper.gem_path('fastlane')}/lib/assets/AppfileTemplateAndroid")
34
+ template = File.read("#{Fastlane::ROOT}/lib/assets/AppfileTemplateAndroid")
35
35
  template.gsub!('[[JSON_KEY_FILE]]', json_key_file)
36
36
  template.gsub!('[[PACKAGE_NAME]]', package_name)
37
37
  path = File.join(folder, 'Appfile')
@@ -40,7 +40,7 @@ module Fastlane
40
40
  end
41
41
 
42
42
  def generate_fastfile
43
- template = File.read("#{Helper.gem_path('fastlane')}/lib/assets/FastfileTemplateAndroid")
43
+ template = File.read("#{Fastlane::ROOT}/lib/assets/FastfileTemplateAndroid")
44
44
 
45
45
  template.gsub!('[[FASTLANE_VERSION]]', Fastlane::VERSION)
46
46
 
@@ -156,7 +156,7 @@ module Fastlane
156
156
  end
157
157
 
158
158
  def generate_appfile(manually: false)
159
- template = File.read("#{Helper.gem_path('fastlane')}/lib/assets/AppfileTemplate")
159
+ template = File.read("#{Fastlane::ROOT}/lib/assets/AppfileTemplate")
160
160
  if manually
161
161
  ask_for_app_identifier
162
162
  ask_for_apple_id
@@ -233,7 +233,7 @@ module Fastlane
233
233
  def generate_fastfile(manually: false)
234
234
  scheme = self.project.schemes.first unless manually
235
235
 
236
- template = File.read("#{Helper.gem_path('fastlane')}/lib/assets/DefaultFastfileTemplate")
236
+ template = File.read("#{Fastlane::ROOT}/lib/assets/DefaultFastfileTemplate")
237
237
 
238
238
  scheme = ask("Optional: The scheme name of your app (If you don't need one, just hit Enter): ").to_s.strip unless scheme
239
239
  if scheme.length > 0
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '1.101.0'.freeze
2
+ VERSION = '1.102.0'.freeze
3
3
  DESCRIPTION = "The easiest way to automate building and releasing your iOS and Android apps"
4
4
  end
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: 1.101.0
4
+ version: 1.102.0
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: 2016-08-18 00:00:00.000000000 Z
18
+ date: 2016-08-29 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: krausefx-shenzhen
@@ -237,7 +237,7 @@ dependencies:
237
237
  requirements:
238
238
  - - ">="
239
239
  - !ruby/object:Gem::Version
240
- version: 0.31.2
240
+ version: 0.32.0
241
241
  - - "<"
242
242
  - !ruby/object:Gem::Version
243
243
  version: 1.0.0
@@ -247,7 +247,7 @@ dependencies:
247
247
  requirements:
248
248
  - - ">="
249
249
  - !ruby/object:Gem::Version
250
- version: 0.31.2
250
+ version: 0.32.0
251
251
  - - "<"
252
252
  - !ruby/object:Gem::Version
253
253
  version: 1.0.0
@@ -257,7 +257,7 @@ dependencies:
257
257
  requirements:
258
258
  - - ">="
259
259
  - !ruby/object:Gem::Version
260
- version: 1.13.2
260
+ version: 1.13.3
261
261
  - - "<"
262
262
  - !ruby/object:Gem::Version
263
263
  version: 2.0.0
@@ -267,7 +267,7 @@ dependencies:
267
267
  requirements:
268
268
  - - ">="
269
269
  - !ruby/object:Gem::Version
270
- version: 1.13.2
270
+ version: 1.13.3
271
271
  - - "<"
272
272
  - !ruby/object:Gem::Version
273
273
  version: 2.0.0
@@ -277,7 +277,7 @@ dependencies:
277
277
  requirements:
278
278
  - - ">="
279
279
  - !ruby/object:Gem::Version
280
- version: 1.13.1
280
+ version: 1.14.0
281
281
  - - "<"
282
282
  - !ruby/object:Gem::Version
283
283
  version: 2.0.0
@@ -287,7 +287,7 @@ dependencies:
287
287
  requirements:
288
288
  - - ">="
289
289
  - !ruby/object:Gem::Version
290
- version: 1.13.1
290
+ version: 1.14.0
291
291
  - - "<"
292
292
  - !ruby/object:Gem::Version
293
293
  version: 2.0.0
@@ -357,7 +357,7 @@ dependencies:
357
357
  requirements:
358
358
  - - ">="
359
359
  - !ruby/object:Gem::Version
360
- version: 1.9.0
360
+ version: 1.10.0
361
361
  - - "<"
362
362
  - !ruby/object:Gem::Version
363
363
  version: 2.0.0
@@ -367,7 +367,7 @@ dependencies:
367
367
  requirements:
368
368
  - - ">="
369
369
  - !ruby/object:Gem::Version
370
- version: 1.9.0
370
+ version: 1.10.0
371
371
  - - "<"
372
372
  - !ruby/object:Gem::Version
373
373
  version: 2.0.0
@@ -477,7 +477,7 @@ dependencies:
477
477
  requirements:
478
478
  - - ">="
479
479
  - !ruby/object:Gem::Version
480
- version: 0.6.2
480
+ version: 0.6.3
481
481
  - - "<"
482
482
  - !ruby/object:Gem::Version
483
483
  version: 1.0.0
@@ -487,7 +487,7 @@ dependencies:
487
487
  requirements:
488
488
  - - ">="
489
489
  - !ruby/object:Gem::Version
490
- version: 0.6.2
490
+ version: 0.6.3
491
491
  - - "<"
492
492
  - !ruby/object:Gem::Version
493
493
  version: 1.0.0
@@ -497,7 +497,7 @@ dependencies:
497
497
  requirements:
498
498
  - - ">="
499
499
  - !ruby/object:Gem::Version
500
- version: 0.3.2
500
+ version: 0.5.0
501
501
  - - "<"
502
502
  - !ruby/object:Gem::Version
503
503
  version: 1.0.0
@@ -507,7 +507,7 @@ dependencies:
507
507
  requirements:
508
508
  - - ">="
509
509
  - !ruby/object:Gem::Version
510
- version: 0.3.2
510
+ version: 0.5.0
511
511
  - - "<"
512
512
  - !ruby/object:Gem::Version
513
513
  version: 1.0.0