lib/cocoapods/app_group/hook.rb in cocoapods-app_group-0.2.0 vs lib/cocoapods/app_group/hook.rb in cocoapods-app_group-0.3.0

- old
+ new

@@ -4,9 +4,14 @@ def install! Setup.new.call if enabled? super end + def generate_pods_project + SetupXcconfig.new(self).call if enabled? + super + end + private def enabled? podfile && podfile.plugins && !podfile.plugins['cocoapods-app_group'].nil? end