Skip to content

Commit

Permalink
update fastlane gem 2.148.1 -> 2.212.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anoworl committed Mar 9, 2023
1 parent d27ab77 commit 333acf1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions deploygate.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ POST_INSTALL_MESSAGE
spec.add_runtime_dependency 'commander', '~> 4.4'
spec.add_runtime_dependency 'plist', '~> 3.1'
spec.add_runtime_dependency 'xcodeproj', '~> 1.7'
spec.add_runtime_dependency 'highline', '~> 1.7'
spec.add_runtime_dependency 'highline', '~> 2.0'
spec.add_runtime_dependency 'uuid', '~> 2.3'
spec.add_runtime_dependency 'gem_update_checker', '~> 0.2'
spec.add_runtime_dependency 'activesupport', '~> 4.2'
Expand All @@ -35,10 +35,10 @@ POST_INSTALL_MESSAGE
spec.add_runtime_dependency 'net-ping', '~> 2.0'
spec.add_runtime_dependency 'socket.io-client-simple', '~> 1.2'
spec.add_runtime_dependency 'workers', '~> 0.6'
spec.add_runtime_dependency 'sentry-raven', '~> 2.8'
spec.add_runtime_dependency 'sentry-ruby', '~> 5.8'

# ios build
spec.add_runtime_dependency 'fastlane', '~> 2.148.1'
spec.add_runtime_dependency 'fastlane', '~> 2.212.1'

spec.add_development_dependency 'bundler', '>= 2.1.4', '< 3.0'
spec.add_development_dependency 'rake', '~> 12.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/deploygate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
require "net/ping"
require "socket.io-client-simple"
require "workers"
require "sentry-raven"
require "sentry-ruby"

require "i18n"
I18n.load_path = Dir[File.join(File.dirname(__FILE__), '../config/locales/*.yml')]
Expand Down
8 changes: 4 additions & 4 deletions lib/deploygate/command_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ class NotInternetConnectionError < DeployGate::RavenIgnoreException

def setup
# sentry config
Raven.configure do |config|
Sentry.init do |config|
config.dsn = 'https://[email protected]/1371610'
config.logger = Raven::Logger.new('/dev/null') # hide sentry log
config.excluded_exceptions = Raven::Configuration::IGNORE_DEFAULT + [DeployGate::RavenIgnoreException.name]
config.logger = Sentry::Logger.new('/dev/null') # hide sentry log
config.excluded_exceptions = Sentry::Configuration::IGNORE_DEFAULT + [DeployGate::RavenIgnoreException.name]
end

# set Ctrl-C trap
Expand Down Expand Up @@ -163,7 +163,7 @@ def error_handling(command, error)
version = Gym::Xcode.xcode_version
tags[:xcode_version] = version if version.present?

Raven.capture_exception(error, tags: tags)
Sentry.capture_exception(error, tags: tags)
puts HighLine.color(I18n.t('command_builder.error_handling.thanks'), HighLine::GREEN)
end
end
Expand Down

0 comments on commit 333acf1

Please sign in to comment.