fastlane/lib/fastlane/actions/badge.rb in fastlane-2.55.0.beta.20170823010002 vs fastlane/lib/fastlane/actions/badge.rb in fastlane-2.55.0.beta.20170824010002
- old
+ new
@@ -1,9 +1,12 @@
module Fastlane
module Actions
class BadgeAction < Action
def self.run(params)
+ UI.important('The badge action has been deprecated,')
+ UI.important('please checkout the badge plugin here:')
+ UI.important('https://github.com/HazAT/fastlane-plugin-badge')
Actions.verify_gem!('badge')
require 'badge'
options = {
dark: params[:dark],
custom: params[:custom],
@@ -50,10 +53,10 @@
'badge(shield: "Version-0.0.3-blue", no_badge: true)'
]
end
def self.category
- :misc
+ :deprecated
end
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :dark,