# set default subspec no_clash_NAME where NAME is the subspec we want to use.
# This will give us all possible subspecs that do not clash with NAME.
s.default_subspec='no_clash_HockeyApp'
# I always forget to keep the description up to date as provider support is added and removed, thus automation.
ios_spec_names=all_ios_names[0...-1].join(", ") + " and " + all_ios_names[-1]
osx_spec_names=all_osx_names[0...-1].join(", ") + " and " + all_osx_names[-1]
s.description="ARAnalytics is a analytics abstraction library offering a sane API for tracking events and user data. It currently supports on iOS: #{ios_spec_names}. And for OS X: #{osx_spec_names}. It does this by using CocoaPods subspecs to let you decide which libraries you'd like to use. You are free to also use the official API for any provider too. Also, comes with an amazing DSL to clear up your methods."