Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fastlane-plugin-devresponse

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastlane-plugin-devresponse

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

devresponse plugin

fastlane Plugin Badge

Enables you to retreive app-reviews and also answer them

Sample

lane :reply_all_unanswered do
  Spaceship::Tunes.login("helmut@januschka.com")
  app = Spaceship::Application.find("krone.at-fivexfive")


  # get all reviews from AT
  reviews = app.ratings.reviews("AT")
  
  # iterate over each review - thx the 4+ and apologize all below
  reviews.each do | review |
      if review.rating >= 4
        response_message = "Many Thx for your kind feedback and the awesome rating 🎉"
     else
       response_message = "We are really sorry 💔 that you have troubles with the app - feel free to contact us directly at app@domain.com - to get technical assistance!"
      end
       # which not yet have gotten a dev response
       unless review.responded?
           # respond to this user
          review.developer_response.create!(response_message)
       end
  end

  # here is a sample of editing a existing developer response
  if reviews.first.responded?
       reviews.first.developer_response.update!("First you where awesome 👏 but now you are 🚀")
  end
end

run with fastlane reply_all_unanswered

FAQs

Package last updated on 31 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc