{"id":20407825,"url":"https://github.com/restorando/rdloveseeker","last_synced_at":"2025-10-04T03:41:20.767Z","repository":{"id":14433838,"uuid":"17145162","full_name":"restorando/RDLoveSeeker","owner":"restorando","description":"Requests user rating or invites the user to send a feedback email depending on their opinion about the app","archived":false,"fork":false,"pushed_at":"2014-09-22T16:01:41.000Z","size":366,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-02-15T17:18:52.308Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"segment-integrations/analytics.js-integration-rollbar","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/restorando.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-02-24T17:54:25.000Z","updated_at":"2020-10-21T20:21:26.000Z","dependencies_parsed_at":"2022-09-19T02:52:04.811Z","dependency_job_id":null,"html_url":"https://github.com/restorando/RDLoveSeeker","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorando%2FRDLoveSeeker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorando%2FRDLoveSeeker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorando%2FRDLoveSeeker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorando%2FRDLoveSeeker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/restorando","download_url":"https://codeload.github.com/restorando/RDLoveSeeker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241952812,"owners_count":20048070,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T05:26:26.586Z","updated_at":"2025-10-04T03:41:15.729Z","avatar_url":"https://github.com/restorando.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RDLoveSeeker\n\n[![Version](http://cocoapod-badges.herokuapp.com/v/RDLoveSeeker/badge.png)](http://cocoadocs.org/docsets/RDLoveSeeker)\n[![Platform](http://cocoapod-badges.herokuapp.com/p/RDLoveSeeker/badge.png)](http://cocoadocs.org/docsets/RDLoveSeeker)\n\n## Usage\n\nTo run the example project; clone the repo, and run `pod install` from the Project directory first.\n\n## Installation\n\nRDLoveSeeker will be soon available through [CocoaPods](http://cocoapods.org).\nTo install it simply add the following line to your Podfile:\n\n    pod 'RDLoveSeeker'\n\n## Author\n\nLucas Vidal, lucas@restorando.com\n\n## License\n\nRDLoveSeeker is available under the MIT license. See the LICENSE file for more info.\n\n## Configuration examples\n\nWhen you setup the library, i.e. in the AppDelegate.m you have to import the library with\n\n    #import \"RDLoveSeeker.h\"\n\n####Configuration\n\n    [RDLoveSeeker setDebug: NO]; \t\t\t\t\t\t// Will display debug information\n\n    [RDLoveSeeker setEventsToRequestRating:15];\t\t\t// How many significant events should be triggered before requesting user opinion\n\n    [RDLoveSeeker setDaysToRequestRating:21];\t\t\t// How many days from install before requesting user opinion\n    \n    [RDLoveSeeker setShouldRequestOnNewVersion:YES];\t// If set to YES, the library will reset counters when the build number is changed, to request user feedback again once requirements are met.\n    \n    [RDLoveSeeker setFeedbackEmailAddress:@\"feedback@restorando.com\"];\t// Which email addres will be used to receive user feedback\n    \n    [RDLoveSeeker setAppStoreID:529290320];\t\t\t\t// App ip from app store, where the user will (hopefully) reward with 5 stars\n\n####Logging events\n\n    [RDLoveSeeker logSignificantEvent]; \t\t\t\t// Use this method when you want to mark a significant event has happened.\nOne great use is to call this on AppDelegate#applicationDidBecomeActive:(UIApplication *)application method, which will count every app open.\n\nIf you want to check if condidions are met in a particular moment, just call\n\n    [RDLoveSeeker verifyIfNeedsToBeShown]\n\n\n####Localization and texts\n\nTo manage which texts will be displayed, set in your Localizable.strings for every language the following texts:\n\n    // LoveSeeker Pod\n\n\t\"Do you love Restorando?\" = \"Do you love Restorando?\";\n\t\"No\" = \"No\";\n\t\"Yes\" = \"Yes\";\n\t\"We're so happy to hear that\" = \"We're so happy to hear that you love Restorando!\";\n\t\"It'd be really helpful if you rated us.\" = \"It'd be really helpful if you rated us. Thanks so much for using Restorando ;)\";\n\t\"Rate app\" = \"Rate app\";\n\t\"What can we do to ensure that you love our app?\" = \"What can we do to ensure that you love our app?\";\n\t\"We appreciate your feedback.\" = \"We appreciate your feedback.\";\n\t\"No thanks\" = \"No thanks\";\n\t\"Not now\" = \"Not now\";\n\t\"Send email\" = \"Send email\";\n\t\"Feedback Email subject\" = \"My opinion about Restorando app\";\n\t\"Feedback Email body\" = \"What I didn't like: \\n\\n\\n What I did like: \\n\\n\\n\";\n\t\"Ooops\" = \"Ooops\";\n\t\"There was an error sending feedback. Please try again later.\" = \"There was an error sending feedback. Please try again later.\";\n\t\"OK\" = \"OK\";\n\t\"Thank you for helping us improve!\" = \"Thank you for helping us improve!\";\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestorando%2Frdloveseeker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frestorando%2Frdloveseeker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestorando%2Frdloveseeker/lists"}