Class: Fastlane::Actions::TwitterAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::TwitterAction
- Defined in:
- lib/fastlane/actions/twitter.rb
Constant Summary
Constants inherited from Fastlane::Action
Fastlane::Action::AVAILABLE_CATEGORIES
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .example_code ⇒ Object
- .is_supported?(platform) ⇒ Boolean
Class Method Summary collapse
Methods inherited from Fastlane::Action
action_name, author, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text
Class Method Details
.authors ⇒ Object
60 61 62 |
# File 'lib/fastlane/actions/twitter.rb', line 60 def self. ["hjanuschka"] end |
.available_options ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/fastlane/actions/twitter.rb', line 29 def self. [ FastlaneCore::ConfigItem.new(key: :consumer_key, env_name: "FL_TW_CONSUMER_KEY", description: "Consumer Key", is_string: true, optional: false), FastlaneCore::ConfigItem.new(key: :consumer_secret, env_name: "FL_TW_CONSUMER_SECRET", description: "Consumer Secret", is_string: true, optional: false), FastlaneCore::ConfigItem.new(key: :access_token, env_name: "FL_TW_ACCESS_TOKEN", description: "Access Token", is_string: true, optional: false), FastlaneCore::ConfigItem.new(key: :access_token_secret, env_name: "FL_TW_ACCESS_TOKEN_SECRET", description: "Access Token Secret", is_string: true, optional: false), FastlaneCore::ConfigItem.new(key: :message, env_name: "FL_TW_MESSAGE", description: "The tweet", is_string: true, optional: false) ] end |
.category ⇒ Object
80 81 82 |
# File 'lib/fastlane/actions/twitter.rb', line 80 def self.category :notifications end |
.description ⇒ Object
21 22 23 |
# File 'lib/fastlane/actions/twitter.rb', line 21 def self.description "Post a tweet on Twitter.com" end |
.details ⇒ Object
25 26 27 |
# File 'lib/fastlane/actions/twitter.rb', line 25 def self.details "Post a tweet on twitter. Requires you to setup an app on twitter.com and obtain consumer and access_token." end |
.example_code ⇒ Object
68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/fastlane/actions/twitter.rb', line 68 def self.example_code [ 'twitter( access_token: "XXXX", access_token_secret: "xxx", consumer_key: "xxx", consumer_secret: "xxx", message: "You rock!" )' ] end |
.is_supported?(platform) ⇒ Boolean
64 65 66 |
# File 'lib/fastlane/actions/twitter.rb', line 64 def self.is_supported?(platform) true end |
.run(params) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/fastlane/actions/twitter.rb', line 4 def self.run(params) Actions.verify_gem!("twitter") require 'twitter' client = Twitter::REST::Client.new do |config| config.consumer_key = params[:consumer_key] config.consumer_secret = params[:consumer_secret] config.access_token = params[:access_token] config.access_token_secret = params[:access_token_secret] end client.update(params[:message]) UI.(['[TWITTER]', "Successfully tweeted ", params[:message]].join(': ')) end |