cocoapods-expert-difficulty 0.0.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b15621f724abaaaba9aea65f2f6e7d7abf90bdb8
4
- data.tar.gz: c25a11fd282ae5be01541e59ada56f2f46491c83
3
+ metadata.gz: ea1a1eb14f843d1167151f9746f558a963563743
4
+ data.tar.gz: a08905f5b5973addb6829f97a37f6e648eff5ef5
5
5
  SHA512:
6
- metadata.gz: 9225df1b11479e896722c3bb4530d8ad1fd283db2ed3a732277f3c1b2df54be07b41573678c45f4020c9b02891fb32be41f4367088e236efd143a3b9c1a91832
7
- data.tar.gz: fc1a7fa8ffcb0056dcce7b11d4cdd3210bced4fc21e4fd8220b8d6f159d1f361f81021edd850c05ab6dba279b3aa5e5a37819280471d03ff2fda6020f766e072
6
+ metadata.gz: 0a411603660c8a9923a8d41ef3503e53d473812c496b31f025d9616b7455d83266c6de6d09eb421de40d843fcdba0646dbce7d9709a9f570e18ad8b43f07138c
7
+ data.tar.gz: 026d16a20a75152adc411987340730e665a01e4a5bce5f1163d90e1045d51fa4d15478f0470bb1c72f53c6936a6fe7aafde3f6ca754faaa69d565323f156c5be
@@ -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
@@ -1,3 +1,3 @@
1
1
  module CocoapodsExpertDifficulty
2
- VERSION = "0.0.1"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -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 if validates_for_expert
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 validates_for_keys
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.1
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