cocoapods-expert-difficulty 0.0.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +73 -0
- data/lib/cocoapods-expert-difficulty/gem_version.rb +1 -1
- data/lib/cocoapods_plugin.rb +2 -2
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea1a1eb14f843d1167151f9746f558a963563743
|
4
|
+
data.tar.gz: a08905f5b5973addb6829f97a37f6e648eff5ef5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a411603660c8a9923a8d41ef3503e53d473812c496b31f025d9616b7455d83266c6de6d09eb421de40d843fcdba0646dbce7d9709a9f570e18ad8b43f07138c
|
7
|
+
data.tar.gz: 026d16a20a75152adc411987340730e665a01e4a5bce5f1163d90e1045d51fa4d15478f0470bb1c72f53c6936a6fe7aafde3f6ca754faaa69d565323f156c5be
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cocoapods-expert-difficulty (1.0.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
activesupport (4.2.4)
|
10
|
+
i18n (~> 0.7)
|
11
|
+
json (~> 1.7, >= 1.7.7)
|
12
|
+
minitest (~> 5.1)
|
13
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
14
|
+
tzinfo (~> 1.1)
|
15
|
+
bacon (1.2.0)
|
16
|
+
claide (0.9.1)
|
17
|
+
cocoapods (0.38.2)
|
18
|
+
activesupport (>= 3.2.15)
|
19
|
+
claide (~> 0.9.1)
|
20
|
+
cocoapods-core (= 0.38.2)
|
21
|
+
cocoapods-downloader (~> 0.9.1)
|
22
|
+
cocoapods-plugins (~> 0.4.2)
|
23
|
+
cocoapods-stats (~> 0.5.3)
|
24
|
+
cocoapods-trunk (~> 0.6.1)
|
25
|
+
cocoapods-try (~> 0.4.5)
|
26
|
+
colored (~> 1.2)
|
27
|
+
escape (~> 0.0.4)
|
28
|
+
molinillo (~> 0.3.1)
|
29
|
+
nap (~> 0.8)
|
30
|
+
xcodeproj (~> 0.26.3)
|
31
|
+
cocoapods-core (0.38.2)
|
32
|
+
activesupport (>= 3.2.15)
|
33
|
+
fuzzy_match (~> 2.0.4)
|
34
|
+
nap (~> 0.8.0)
|
35
|
+
cocoapods-downloader (0.9.3)
|
36
|
+
cocoapods-plugins (0.4.2)
|
37
|
+
nap
|
38
|
+
cocoapods-stats (0.5.3)
|
39
|
+
nap (~> 0.8)
|
40
|
+
cocoapods-trunk (0.6.4)
|
41
|
+
nap (>= 0.8, < 2.0)
|
42
|
+
netrc (= 0.7.8)
|
43
|
+
cocoapods-try (0.4.5)
|
44
|
+
colored (1.2)
|
45
|
+
escape (0.0.4)
|
46
|
+
fuzzy_match (2.0.4)
|
47
|
+
i18n (0.7.0)
|
48
|
+
json (1.8.3)
|
49
|
+
minitest (5.8.0)
|
50
|
+
molinillo (0.3.1)
|
51
|
+
nap (0.8.0)
|
52
|
+
netrc (0.7.8)
|
53
|
+
rake (10.4.2)
|
54
|
+
thread_safe (0.3.5)
|
55
|
+
tzinfo (1.2.2)
|
56
|
+
thread_safe (~> 0.1)
|
57
|
+
xcodeproj (0.26.3)
|
58
|
+
activesupport (>= 3)
|
59
|
+
claide (~> 0.9.1)
|
60
|
+
colored (~> 1.2)
|
61
|
+
|
62
|
+
PLATFORMS
|
63
|
+
ruby
|
64
|
+
|
65
|
+
DEPENDENCIES
|
66
|
+
bacon
|
67
|
+
bundler (~> 1.3)
|
68
|
+
cocoapods
|
69
|
+
cocoapods-expert-difficulty!
|
70
|
+
rake
|
71
|
+
|
72
|
+
BUNDLED WITH
|
73
|
+
1.10.6
|
data/lib/cocoapods_plugin.rb
CHANGED
@@ -15,14 +15,14 @@ module Pod
|
|
15
15
|
|
16
16
|
def supported_platform_names
|
17
17
|
# if there's no Podfile config do default
|
18
|
-
return tvos_supported_platform_names
|
18
|
+
return tvos_supported_platform_names unless validates_for_expert
|
19
19
|
|
20
20
|
# Otherwise return all platforms for all pods
|
21
21
|
names = PLATFORMS
|
22
22
|
names.map { |name| Platform.new(name, deployment_target(name)) }
|
23
23
|
end
|
24
24
|
|
25
|
-
def
|
25
|
+
def validates_for_expert
|
26
26
|
podfile = Pod::Config.instance.podfile
|
27
27
|
podfile && podfile.plugins && !podfile.plugins['cocoapods-expert-difficulty'].nil?
|
28
28
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-expert-difficulty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Orta Therox
|
@@ -47,6 +47,7 @@ extra_rdoc_files: []
|
|
47
47
|
files:
|
48
48
|
- ".gitignore"
|
49
49
|
- Gemfile
|
50
|
+
- Gemfile.lock
|
50
51
|
- LICENSE.txt
|
51
52
|
- README.md
|
52
53
|
- Rakefile
|