-
Notifications
You must be signed in to change notification settings - Fork 351
/
Copy pathdsl.rb
1895 lines (1752 loc) · 63.4 KB
/
dsl.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
require 'cocoapods-core/specification/dsl/attribute_support'
require 'cocoapods-core/specification/dsl/attribute'
require 'cocoapods-core/specification/dsl/platform_proxy'
module Pod
class Specification
#- NOTE ------------------------------------------------------------------#
# The order of the methods defined in this file and the order of the
# methods is relevant for the documentation generated on the
# CocoaPods/cocoapods.github.com repository.
#-------------------------------------------------------------------------#
# A specification describes a version of Pod library. It includes details
# about where the source should be fetched from, what files to use, the
# build settings to apply, and other general metadata such as its name,
# version, and description.
#
# ---
#
# A stub specification file can be generated by the [pod spec
# create](http://guides.cocoapods.org/terminal/commands.html#pod_spec_create) command.
#
# ---
#
# The specification DSL provides great flexibility and dynamism. Moreover,
# the DSL adopts the
# [convention over configuration](http://en.wikipedia.org/wiki/Convention_over_configuration)
# and thus it can be very simple:
#
# Pod::Spec.new do |spec|
# spec.name = 'Reachability'
# spec.version = '3.1.0'
# spec.license = { :type => 'BSD' }
# spec.homepage = 'https://github.com/tonymillion/Reachability'
# spec.authors = { 'Tony Million' => '[email protected]' }
# spec.summary = 'ARC and GCD Compatible Reachability Class for iOS and OS X.'
# spec.source = { :git => 'https://github.com/tonymillion/Reachability.git', :tag => 'v3.1.0' }
# spec.source_files = 'Reachability.{h,m}'
# spec.framework = 'SystemConfiguration'
# end
#
# Or it can be quite detailed:
#
# Pod::Spec.new do |spec|
# spec.name = 'Reachability'
# spec.version = '3.1.0'
# spec.license = { :type => 'BSD' }
# spec.homepage = 'https://github.com/tonymillion/Reachability'
# spec.authors = { 'Tony Million' => '[email protected]' }
# spec.summary = 'ARC and GCD Compatible Reachability Class for iOS and OS X.'
# spec.source = { :git => 'https://github.com/tonymillion/Reachability.git', :tag => 'v3.1.0' }
# spec.module_name = 'Rich'
# spec.swift_version = '4.0'
#
# spec.ios.deployment_target = '9.0'
# spec.osx.deployment_target = '10.10'
#
# spec.source_files = 'Reachability/common/*.swift'
# spec.ios.source_files = 'Reachability/ios/*.swift', 'Reachability/extensions/*.swift'
# spec.osx.source_files = 'Reachability/osx/*.swift'
#
# spec.framework = 'SystemConfiguration'
# spec.ios.framework = 'UIKit'
# spec.osx.framework = 'AppKit'
#
# spec.dependency 'SomeOtherPod'
# end
#
module DSL
extend Pod::Specification::DSL::AttributeSupport
# Deprecations must be required after include AttributeSupport
require 'cocoapods-core/specification/dsl/deprecations'
#-----------------------------------------------------------------------#
# @!group Root specification
#
# A ‘root’ specification stores the information about the specific
# version of a library.
#
# The attributes in this group can only be written to on the ‘root’
# specification, **not** on the ‘sub-specifications’.
#
# ---
#
# The attributes listed in this group are the only one which are
# required by a podspec.
#
# The attributes of the other groups are offered to refine the podspec
# and follow a convention over configuration approach. A root
# specification can describe these attributes either directly of
# through ‘[sub-specifications](#subspec)’.
#-----------------------------------------------------------------------#
# @!method name=(name)
#
# The name of the Pod.
#
# @example
#
# spec.name = 'AFNetworking'
#
# @param [String] name
# the name of the pod.
#
attribute :name,
:required => true,
:inherited => false,
:multi_platform => false
#------------------#
# @!method version=(version)
#
# The version of the Pod. CocoaPods follows
# [semantic versioning](http://semver.org).
#
# @example
#
# spec.version = '0.0.1'
#
# @param [String] version
# the version of the Pod.
#
root_attribute :version,
:required => true
#------------------#
# @!method swift_versions=(version)
#
# The versions of Swift that the specification supports. A version of '4' will be treated as
# '4.0' by CocoaPods and not '4.1' or '4.2'.
#
# **Note** The Swift compiler mostly accepts major versions and sometimes will honor minor versions.
# While CocoaPods allows specifying a minor or patch version it might not be honored fully by the Swift compiler.
#
# @example
#
# spec.swift_versions = ['3.0']
#
# @example
#
# spec.swift_versions = ['3.0', '4.0', '4.2']
#
# @example
#
# spec.swift_version = '3.0'
#
# @example
#
# spec.swift_version = '3.0', '4.0'
#
# @param [String, Array<String>] swift_versions
#
root_attribute :swift_versions,
:container => Array,
:singularize => true
#-----------------------------------------------------------------------#
# @!method cocoapods_version=(cocoapods_version)
#
# The version of CocoaPods that the specification supports.
#
# @example
#
# spec.cocoapods_version = '>= 0.36'
#
# @param [String] cocoapods_version
# the CocoaPods version that the specification supports.
# CocoaPods follows [semantic versioning](http://semver.org).
#
root_attribute :cocoapods_version
#------------------#
# @!method authors=(authors)
#
# The name and email addresses of the library maintainers, not the
# Podspec maintainer.
#
# @example
#
# spec.author = 'Darth Vader'
#
# @example
#
# spec.authors = 'Darth Vader', 'Wookiee'
#
# @example
#
# spec.authors = { 'Darth Vader' => '[email protected]',
# 'Wookiee' => '[email protected]' }
#
# @param [String, Hash{String=>String}] authors
# the list of the authors of the library and their emails.
#
root_attribute :authors,
:types => [String, Array, Hash],
:container => Hash,
:required => true,
:singularize => true
#------------------#
# @!method social_media_url=(social_media_url)
#
# The URL for the social media contact of the Pod, CocoaPods web
# services can use this.
#
# For example, the @CocoaPodsFeed notifications will include the
# Twitter handle (shortening the description) if the URL is relative to
# Twitter. This does **not** necessarily have to be a Twitter URL, but
# only those are included in the Twitter @CocoaPodsFeed notifications.
#
# @example
#
# spec.social_media_url = 'https://twitter.com/cocoapods'
#
# @example
#
# spec.social_media_url = 'https://groups.google.com/forum/#!forum/cocoapods'
#
# @param [String] social_media_url
# the social media URL.
#
root_attribute :social_media_url
#------------------#
# The keys accepted by the license attribute.
#
LICENSE_KEYS = [:type, :file, :text].freeze
# @!method license=(license)
#
# The license of the Pod.
#
# ---
#
# Unless the source contains a file named `LICENSE.*` or `LICENCE.*`,
# the path of the license file **or** the integral text of the notice
# commonly used for the license type must be specified.
# If a license file is specified, it either must be without a file
# extensions or be one of `txt`, `md`, or `markdown`.
#
# This information is used by CocoaPods to generate acknowledgement
# files (markdown and plist) which can be used in the acknowledgements
# section of the final application.
#
# @example
#
# spec.license = 'MIT'
#
# @example
#
# spec.license = { :type => 'MIT', :file => 'MIT-LICENSE.txt' }
#
# @example
#
# spec.license = { :type => 'MIT', :text => <<-LICENSE
# Copyright 2012
# Permission is granted to...
# LICENSE
# }
#
# @param [String] license
# The type of the license
#
# @overload license=(license)
# @param [String, Hash{Symbol=>String}] license
# @option license [String] :type license type
# @option license [String] :file file containing full license text. Supports txt, md, and markdown
# @option license [String] :text full license text
#
root_attribute :license,
:container => Hash,
:keys => LICENSE_KEYS,
:required => true
#------------------#
# @!method homepage=(homepage)
#
# The URL of the homepage of the Pod.
#
# @example
#
# spec.homepage = 'http://www.example.com'
#
# @param [String] homepage
# the URL of the homepage of the Pod.
#
root_attribute :homepage,
:required => true
#------------------#
# @!method readme=(readme)
#
# The URL for the README markdown file for this pod version.
#
# @example
#
# spec.readme = 'https://www.example.com/Pod-1.5-README.md'
#
# @param [String] readme
# the readme markdown URL.
#
root_attribute :readme
#------------------#
# @!method changelog=(changelog)
#
# The URL for the CHANGELOG markdown file for this pod version.
#
# @example
#
# spec.changelog = 'https://www.example.com/Pod-1.5-CHANGELOG.md'
#
# @param [String] changelog
# the changelog markdown URL.
#
root_attribute :changelog
#------------------#
# The keys accepted by the hash of the source attribute.
#
SOURCE_KEYS = {
:git => [:tag, :branch, :commit, :submodules].freeze,
:svn => [:folder, :tag, :revision].freeze,
:hg => [:revision].freeze,
:http => [:flatten, :type, :sha256, :sha1, :headers].freeze,
}.freeze
# @!method source=(source)
#
# The location from where the library should be retrieved.
#
# @example Specifying a Git source with a tag. This is how most OSS Podspecs work.
#
# spec.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git',
# :tag => spec.version.to_s }
#
# @example Using a tag prefixed with 'v' and submodules.
#
# spec.source = { :git => 'https://github.com/typhoon-framework/Typhoon.git',
# :tag => "v#{spec.version}", :submodules => true }
#
# @example Using Subversion with a tag.
#
# spec.source = { :svn => 'http://svn.code.sf.net/p/polyclipping/code', :tag => '4.8.8' }
#
# @example Using Mercurial with the same revision as the spec's semantic version string.
#
# spec.source = { :hg => 'https://bitbucket.org/dcutting/hyperbek', :revision => "#{s.version}" }
#
# @example Using HTTP to download a compressed file of the code. It supports zip, tgz, bz2, txz and tar.
#
# spec.source = { :http => 'http://dev.wechatapp.com/download/sdk/WeChat_SDK_iOS_en.zip' }
#
# @example Using HTTP to download a file using a hash to verify the download. It supports sha1 and sha256.
#
# spec.source = { :http => 'http://dev.wechatapp.com/download/sdk/WeChat_SDK_iOS_en.zip',
# :sha1 => '7e21857fe11a511f472cfd7cfa2d979bd7ab7d96' }
#
#
# @overload source=(git)
# @param [Hash] git
# @option git [String] :git git source URI
# @option git [String] :tag version tag
# @option git [Boolean] :submodules Whether to checkout submodules
# @option git [String] :branch branch name
# @option git [String] :commit commit hash
#
# @overload source=(svn)
# @param [Hash] svn
# @option svn [String] :svn svn source URI
# @option svn [String] :tag version tag
# @option svn [String] :folder folder
# @option svn [String] :revision revision
#
# @overload source=(hg)
# @param [Hash] hg
# @option hg [String] :hg mercurial source URI
# @option hg [String] :revision revision
#
# @overload source=(http)
# @param [Hash] http
# @option http [String] :http compressed source URL
# @option http [String] :type file type. Supports zip, tgz, bz2, txz and tar
# @option http [String] :sha1 SHA hash. Supports SHA1 and SHA256
#
root_attribute :source,
:container => Hash,
:keys => SOURCE_KEYS,
:required => true
#------------------#
# @!method summary=(summary)
#
# A short (maximum 140 characters) description of the Pod.
#
# ---
#
# The description should be short, yet informative. It represents the
# tag line of the Pod and there is no need to specify that a Pod is a
# library (they always are).
#
# The summary is expected to be properly capitalised and containing the
# correct punctuation.
#
# @example
#
# spec.summary = 'Computes the meaning of life.'
#
# @param [String] summary
# A short description of the Pod.
#
root_attribute :summary,
:required => true
#------------------#
# @!method description=(description)
#
# A description of the Pod more detailed than the summary.
#
# @example
#
# spec.description = <<-DESC
# Computes the meaning of life.
# Features:
# 1. Is self aware
# ...
# 42. Likes candies.
# DESC
#
# @param [String] description
# A longer description of the Pod.
#
root_attribute :description
#------------------#
# @!method screenshots=(screenshots)
#
# A list of URLs to images showcasing the Pod. Intended for UI oriented
# libraries. CocoaPods recommends the usage of the `gif` format.
#
# @example
#
# spec.screenshot = 'http://dl.dropbox.com/u/378729/MBProgressHUD/1.png'
#
# @example
#
# spec.screenshots = [ 'http://dl.dropbox.com/u/378729/MBProgressHUD/1.png',
# 'http://dl.dropbox.com/u/378729/MBProgressHUD/2.png' ]
#
# @param [String] screenshots
# An URL for the screenshot of the Pod.
#
root_attribute :screenshots,
:singularize => true,
:container => Array
#------------------#
# @!method documentation_url=(documentation_url)
#
# An optional URL for the documentation of the Pod which will be honoured by
# CocoaPods web properties. Leaving it blank will default to a CocoaDocs
# generated URL for your library.
#
# @example
#
# spec.documentation_url = 'http://www.example.com/docs.html'
#
# @param [String] documentation_url
# The link of the web documentation of the Pod.
#
root_attribute :documentation_url
#------------------#
# @!method prepare_command=(command)
#
# A bash script that will be executed after the Pod is downloaded. This
# command can be used to create, delete and modify any file downloaded
# and will be ran before any paths for other file attributes of the
# specification are collected.
#
# This command is executed before the Pod is cleaned and before the
# Pods project is created. The working directory is the root of the
# Pod.
#
# If the pod is installed with the `:path` option this command will not
# be executed.
#
# @example
#
# spec.prepare_command = 'ruby build_files.rb'
#
# @example
#
# spec.prepare_command = <<-CMD
# sed -i 's/MyNameSpacedHeader/Header/g' ./**/*.h
# sed -i 's/MyNameOtherSpacedHeader/OtherHeader/g' ./**/*.h
# CMD
#
# @param [String] command
# the prepare command of the pod.
#
root_attribute :prepare_command
#------------------#
# @!method static_framework=(flag)
#
# Indicates, that if use_frameworks! is specified, the
# pod should include a static library framework.
#
# @example
#
# spec.static_framework = true
#
# @param [Boolean] flag
# Indicates, that if use_frameworks! is specified, the
# pod should include a static library framework.
#
root_attribute :static_framework,
:types => [TrueClass, FalseClass],
:default_value => false
#------------------#
# @!method deprecated=(flag)
#
# Whether the library has been deprecated.
#
# @example
#
# spec.deprecated = true
#
# @param [Boolean] flag
# whether the library has been deprecated.
#
root_attribute :deprecated,
:types => [TrueClass, FalseClass],
:default_value => false
# @!method deprecated_in_favor_of=(deprecated_in_favor_of)
#
# The name of the Pod that this one has been deprecated in favor of.
#
# @example
#
# spec.deprecated_in_favor_of = 'NewMoreAwesomePod'
#
# @param [String] deprecated_in_favor_of
# the name of the Pod that this one has been deprecated in
# favor of.
#
root_attribute :deprecated_in_favor_of
#-----------------------------------------------------------------------#
# @!group Platform
#
# A specification should indicate the platform and the correspondent
# deployment targets on which the library is supported.
#
# If not defined in a subspec the attributes of this group inherit the
# value of the parent.
#-----------------------------------------------------------------------#
# The names of the platforms supported by the specification class.
#
PLATFORMS = [:osx, :ios, :tvos, :watchos].freeze
# @todo This currently is not used in the Ruby DSL.
#
attribute :platforms,
:container => Hash,
:keys => PLATFORMS,
:multi_platform => false,
:inherited => true
# The platform on which this Pod is supported. Leaving this blank
# means the Pod is supported on all platforms. When supporting multiple
# platforms you should use deployment_target below instead.
#
# @example
#
# spec.platform = :osx, '10.8'
#
# @example
#
# spec.platform = :ios
#
# @example
#
# spec.platform = :osx
#
# @param [Array<Symbol, String>] args
# A tuple where the first value is the name of the platform,
# (either `:ios` or `:osx`) and the second is the deployment
# target.
#
def platform=(args)
name, deployment_target = args
name = :osx if name.to_s == 'macos'
attributes_hash['platforms'] = if name
{ name.to_s => deployment_target }
else
{}
end
end
#------------------#
# The minimum deployment targets of the supported platforms.
#
# As opposed to the `platform` attribute, the `deployment_target`
# attribute allows to specify multiple platforms on which this pod
# is supported — specifying a different deployment target for each.
#
# @example
#
# spec.ios.deployment_target = '6.0'
#
# @example
#
# spec.osx.deployment_target = '10.8'
#
# @param [String] _args
# The deployment target of the platform.
#
def deployment_target=(*_args)
raise Informative, 'The deployment target can be declared only per ' \
'platform.'
end
#-----------------------------------------------------------------------#
# @!group Build settings
#
# In this group are listed the attributes related to the configuration
# of the build environment that should be used to build the library.
#
# If not defined in a subspec the attributes of this group inherit the
# value of the parent.
#-----------------------------------------------------------------------#
# @todo This currently is not used in the Ruby DSL.
#
attribute :dependencies,
:container => Hash,
:inherited => true
# Any dependency on other Pods or to a ‘sub-specification’.
#
# ---
#
# Dependencies can specify versions requirements. The use of the optimistic
# version indicator `~>` is recommended because it provides good
# control over the version without being too restrictive. For example,
# `~> 1.0.1` is equivalent to `>= 1.0.1` combined with `< 1.1`. Similarly,
# `~> 1.0` will match `1.0`, `1.0.1`, `1.1`, but will not upgrade to `2.0`.
#
# Pods with overly restrictive dependencies limit their compatibility with
# other Pods.
#
# @example
# spec.dependency 'AFNetworking', '~> 1.0'
#
# @example
# spec.dependency 'AFNetworking', '~> 1.0', :configurations => ['Debug']
#
# @example
# spec.dependency 'AFNetworking', '~> 1.0', :configurations => :debug
#
# @example
# spec.dependency 'RestKit/CoreData', '~> 0.20.0'
#
# @example
# spec.ios.dependency 'MBProgressHUD', '~> 0.5'
#
def dependency(*args)
name, *version_requirements = args
if name == self.name
raise Informative, "A specification can't require itself as a " \
'subspec'
end
if @parent
composed_name = ''
@parent.name.split('/').each do |component|
composed_name << component
if name == composed_name
raise Informative, "A subspec can't require one of its " \
'parents specifications'
else
composed_name << '/'
end
end
end
configurations_option = version_requirements.find { |option| option.is_a?(Hash) && option.key?(:configurations) }
whitelisted_configurations = if configurations_option
version_requirements.delete(configurations_option)
Array(configurations_option.delete(:configurations)).map { |c| c.to_s.downcase }
end
dependency_options = version_requirements.reject { |req| req.is_a?(String) }
dependency_options.each do |dependency_option|
if dependency_option.is_a?(Hash)
if !dependency_option[:path].nil?
raise Informative, 'Podspecs cannot specify the source of dependencies. The `:path` option is not supported.'\
' `:path` can be used in the Podfile instead to override global dependencies.'
elsif !dependency_option[:git].nil?
raise Informative, 'Podspecs cannot specify the source of dependencies. The `:git` option is not supported.'\
' `:git` can be used in the Podfile instead to override global dependencies.'
end
end
raise Informative, "Unsupported version requirements. #{version_requirements.inspect} is not valid."
end
attributes_hash['dependencies'] ||= {}
attributes_hash['dependencies'][name] = version_requirements
unless whitelisted_configurations.nil?
if (extras = whitelisted_configurations - %w(debug release)) && !extras.empty?
raise Informative, "Only `Debug` & `Release` are allowed under configurations for dependency on `#{name}`. " \
"Found #{extras.map { |configuration| "`#{configuration}`" }.to_sentence}."
end
attributes_hash['configuration_pod_whitelist'] ||= {}
attributes_hash['configuration_pod_whitelist'][name] = whitelisted_configurations
end
end
def dependency=(args)
joined = args.join('\', \'')
arguments = "\'#{joined}\'"
raise Informative, "Cannot assign value to `dependency`. Did you mean: `dependency #{arguments}`?"
end
#------------------#
# @!method info_plist=(info_plist)
#
# Key-Value pairs to add to the generated `Info.plist`.
#
# The values will be merged with the default values that
# CocoaPods generates, overriding any duplicates.
#
# For library specs, the values will be merged into the generated Info.plist
# for libraries that are integrated using frameworks. It will have no effect
# for static libraries.
#
# Subspecs (other than app and test specs) are not supported.
#
# For app specs, the values will be merged into the application host's `Info.plist`.
#
# For test specs, the values will be merged into the test bundle's `Info.plist`.
#
# @example
#
# spec.info_plist = {
# 'CFBundleIdentifier' => 'com.myorg.MyLib',
# 'MY_VAR' => 'SOME_VALUE'
# }
#
# @param [Hash] info_plist
# The Info.plist values for the Pod.
#
attribute :info_plist,
:container => Hash,
:inherited => false
#------------------#
# @!method requires_arc=(flag)
#
# `requires_arc` allows you to specify which source_files use ARC.
# This can either be the files which support ARC, or true to indicate
# all of the source_files use ARC.
#
# Files which do not use ARC will have the `-fno-objc-arc` compiler
# flag.
#
# The default value of this attribute is `true`.
#
# @example
#
# spec.requires_arc = false
#
# @example
#
# spec.requires_arc = 'Classes/Arc'
#
# @example
#
# spec.requires_arc = ['Classes/*ARC.m', 'Classes/ARC.mm']
#
# @param [Bool, String, Array<String>] flag
# whether the source files require ARC.
#
attribute :requires_arc,
:types => [TrueClass, FalseClass, String, Array],
:file_patterns => true,
:default_value => true,
:inherited => true
#------------------#
# @!method frameworks=(*frameworks)
#
# A list of system frameworks that the user’s target needs to link
# against.
#
# @example
#
# spec.ios.framework = 'CFNetwork'
#
# @example
#
# spec.frameworks = 'QuartzCore', 'CoreData'
#
# @param [String, Array<String>] frameworks
# A list of framework names.
#
attribute :frameworks,
:container => Array,
:singularize => true,
:inherited => true
#------------------#
# @!method weak_frameworks=(*frameworks)
#
# A list of frameworks that the user’s target needs to **weakly** link
# against.
#
# @example
#
# spec.weak_framework = 'Twitter'
#
# @example
#
# spec.weak_frameworks = 'Twitter', 'SafariServices'
#
# @param [String, Array<String>] weak_frameworks
# A list of frameworks names.
#
attribute :weak_frameworks,
:container => Array,
:singularize => true,
:inherited => true
#------------------#
# @!method libraries=(*libraries)
#
# A list of system libraries that the user’s target (application) needs to
# link against.
#
# @example
#
# spec.ios.library = 'xml2'
#
# @example
#
# spec.libraries = 'xml2', 'z'
#
# @param [String, Array<String>] libraries
# A list of library names.
#
attribute :libraries,
:container => Array,
:singularize => true,
:inherited => true
#------------------#
# @!method compiler_flags=(flags)
#
# A list of flags which should be passed to the compiler.
#
# @example
#
# spec.compiler_flags = '-DOS_OBJECT_USE_OBJC=0', '-Wno-format'
#
# @param [String, Array<String>] flags
# A list of flags.
#
attribute :compiler_flags,
:container => Array,
:singularize => true,
:inherited => true
#------------------#
# @!method pod_target_xcconfig=(value)
#
# Any flag to add to the final __private__ pod target xcconfig file.
#
# @example
#
# spec.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
#
# @param [Hash{String => String}] value
# Key-value pairs representing build settings.
#
attribute :pod_target_xcconfig,
:container => Hash,
:inherited => true
# @!method user_target_xcconfig=(value)
#
# Specifies flags to add to the final aggregate target xcconfig file,
# which propagates to non-overridden and inheriting build settings to
# the integrated user targets.
#
# ---
#
# This attribute is __not recommended__ as Pods should not pollute the
# build settings of the user project and this can cause conflicts.
#
# Multiple definitions for build settings that take multiple values
# will be merged. The user is warned on conflicting definitions for
# custom build settings and build settings that take only one value.
#
# Typically clang compiler flags or precompiler macro definitions go
# in here if they are required when importing the pod in the user
# target. Note that, this influences not only the compiler view of the
# public interface of your pod, but also all other integrated pods
# alongside to yours. You should always prefer [`pod_target_xcconfig`](
# http://guides.cocoapods.org/syntax/podspec.html#pod_target_xcconfig),
# which can contain the same settings, but only influence the
# toolchain when compiling your pod target.
#
# @example
#
# spec.user_target_xcconfig = { 'MY_SUBSPEC' => 'YES' }
#
# @param [Hash{String => String}] value
# Key-value pairs representing build settings.
#
attribute :user_target_xcconfig,
:container => Hash,
:inherited => true
#------------------#
# @!method prefix_header_contents=(content)
#
# Any content to inject in the prefix header of the pod project.
#
# ---
#
# This attribute is __not recommended__ as Pods should not pollute the
# prefix header of other libraries or of the user project.
#
# @example
#
# spec.prefix_header_contents = '#import <UIKit/UIKit.h>'
#
# @example
#
# spec.prefix_header_contents = '#import <UIKit/UIKit.h>', '#import <Foundation/Foundation.h>'
#
# @param [String] content
# The contents of the prefix header.
#
attribute :prefix_header_contents,
:types => [Array, String],
:inherited => true
#------------------#
# @!method prefix_header_file=(path)
#
# A path to a prefix header file to inject in the prefix header of the
# pod project.
# `false` indicates that the default CocoaPods prefix header should not
# be generated.
# `true` is the default and indicates that the default CocoaPods prefix
# header should be generated.
#
# ---
#