cocoapods-show-podpsecs-in-project 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +0 -1
- data/cocoapods-show-podpsecs-in-project.gemspec +2 -0
- data/lib/cocoapods-show-podpsecs-in-project/gem_version.rb +1 -1
- data/spec/spec_helper.rb +0 -33
- metadata +16 -4
- data/Gemfile +0 -13
- data/Gemfile.lock +0 -97
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0969ffcaff288d9affd52b2a62820b74b544a7a3'
|
4
|
+
data.tar.gz: 5967b331780ccc71259d612978fc47dfc68ab2ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbe0a989e1809e6f0cceb4700fe98c689fb4a0a98c87fa3fbd440b5880ac4b3c01c1bbfb4d0ecf0983f715d367e33d02d1ce7cffb2119b5e2a80a5e9f6ea18a4
|
7
|
+
data.tar.gz: 33d0e90e78fd2b119965caadbe4bac9da5a08e21baece455ef478f359407fbf49205d00c3252e21196e15623d44dc485c759f121646cf54b0733f4e80498206e
|
data/Rakefile
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -4,47 +4,14 @@ $:.unshift((ROOT + 'lib').to_s)
|
|
4
4
|
$:.unshift((ROOT + 'spec').to_s)
|
5
5
|
|
6
6
|
require 'bundler/setup'
|
7
|
-
require 'bacon'
|
8
|
-
require 'mocha-on-bacon'
|
9
|
-
require 'pretty_bacon'
|
10
7
|
require 'pathname'
|
11
8
|
require 'cocoapods'
|
12
9
|
|
13
|
-
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
14
|
-
|
15
10
|
require 'cocoapods_plugin'
|
16
11
|
|
17
12
|
#-----------------------------------------------------------------------------#
|
18
13
|
|
19
14
|
module Pod
|
20
|
-
|
21
|
-
# Disable the wrapping so the output is deterministic in the tests.
|
22
|
-
#
|
23
|
-
UI.disable_wrap = true
|
24
|
-
|
25
|
-
# Redirects the messages to an internal store.
|
26
|
-
#
|
27
|
-
module UI
|
28
|
-
@output = ''
|
29
|
-
@warnings = ''
|
30
|
-
|
31
|
-
class << self
|
32
|
-
attr_accessor :output
|
33
|
-
attr_accessor :warnings
|
34
|
-
|
35
|
-
def puts(message = '')
|
36
|
-
@output << "#{message}\n"
|
37
|
-
end
|
38
|
-
|
39
|
-
def warn(message = '', actions = [])
|
40
|
-
@warnings << "#{message}\n"
|
41
|
-
end
|
42
|
-
|
43
|
-
def print(message)
|
44
|
-
@output << message
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
48
15
|
end
|
49
16
|
|
50
17
|
#-----------------------------------------------------------------------------#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-show-podpsecs-in-project
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- X140Yu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-12-
|
11
|
+
date: 2018-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: cocoapods
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.0'
|
41
55
|
description: A CocoaPods plugin which shows all project related podpsecs in pods project.
|
42
56
|
email:
|
43
57
|
- zhaoxinyu1994@gmail.com
|
@@ -46,8 +60,6 @@ extensions: []
|
|
46
60
|
extra_rdoc_files: []
|
47
61
|
files:
|
48
62
|
- ".gitignore"
|
49
|
-
- Gemfile
|
50
|
-
- Gemfile.lock
|
51
63
|
- LICENSE.txt
|
52
64
|
- README.md
|
53
65
|
- Rakefile
|
data/Gemfile
DELETED
data/Gemfile.lock
DELETED
@@ -1,97 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
cocoapods-show-podpsecs-in-project (0.1.1)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
CFPropertyList (3.0.0)
|
10
|
-
activesupport (4.2.10)
|
11
|
-
i18n (~> 0.7)
|
12
|
-
minitest (~> 5.1)
|
13
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
14
|
-
tzinfo (~> 1.1)
|
15
|
-
atomos (0.1.3)
|
16
|
-
bacon (1.2.0)
|
17
|
-
claide (1.0.2)
|
18
|
-
cocoapods (1.5.0)
|
19
|
-
activesupport (>= 4.0.2, < 5)
|
20
|
-
claide (>= 1.0.2, < 2.0)
|
21
|
-
cocoapods-core (= 1.5.0)
|
22
|
-
cocoapods-deintegrate (>= 1.0.2, < 2.0)
|
23
|
-
cocoapods-downloader (>= 1.2.0, < 2.0)
|
24
|
-
cocoapods-plugins (>= 1.0.0, < 2.0)
|
25
|
-
cocoapods-search (>= 1.0.0, < 2.0)
|
26
|
-
cocoapods-stats (>= 1.0.0, < 2.0)
|
27
|
-
cocoapods-trunk (>= 1.3.0, < 2.0)
|
28
|
-
cocoapods-try (>= 1.1.0, < 2.0)
|
29
|
-
colored2 (~> 3.1)
|
30
|
-
escape (~> 0.0.4)
|
31
|
-
fourflusher (~> 2.0.1)
|
32
|
-
gh_inspector (~> 1.0)
|
33
|
-
molinillo (~> 0.6.5)
|
34
|
-
nap (~> 1.0)
|
35
|
-
ruby-macho (~> 1.1)
|
36
|
-
xcodeproj (>= 1.5.7, < 2.0)
|
37
|
-
cocoapods-core (1.5.0)
|
38
|
-
activesupport (>= 4.0.2, < 6)
|
39
|
-
fuzzy_match (~> 2.0.4)
|
40
|
-
nap (~> 1.0)
|
41
|
-
cocoapods-deintegrate (1.0.2)
|
42
|
-
cocoapods-downloader (1.2.2)
|
43
|
-
cocoapods-plugins (1.0.0)
|
44
|
-
nap
|
45
|
-
cocoapods-search (1.0.0)
|
46
|
-
cocoapods-stats (1.0.0)
|
47
|
-
cocoapods-trunk (1.3.1)
|
48
|
-
nap (>= 0.8, < 2.0)
|
49
|
-
netrc (~> 0.11)
|
50
|
-
cocoapods-try (1.1.0)
|
51
|
-
colored2 (3.1.2)
|
52
|
-
concurrent-ruby (1.1.3)
|
53
|
-
escape (0.0.4)
|
54
|
-
fourflusher (2.0.1)
|
55
|
-
fuzzy_match (2.0.4)
|
56
|
-
gh_inspector (1.1.3)
|
57
|
-
i18n (0.9.5)
|
58
|
-
concurrent-ruby (~> 1.0)
|
59
|
-
metaclass (0.0.4)
|
60
|
-
minitest (5.11.3)
|
61
|
-
mocha (1.7.0)
|
62
|
-
metaclass (~> 0.0.1)
|
63
|
-
mocha-on-bacon (0.2.3)
|
64
|
-
mocha (>= 0.13.0)
|
65
|
-
molinillo (0.6.6)
|
66
|
-
nanaimo (0.2.6)
|
67
|
-
nap (1.1.0)
|
68
|
-
netrc (0.11.0)
|
69
|
-
prettybacon (0.0.2)
|
70
|
-
bacon (~> 1.2)
|
71
|
-
rake (12.3.1)
|
72
|
-
ruby-macho (1.3.1)
|
73
|
-
thread_safe (0.3.6)
|
74
|
-
tzinfo (1.2.5)
|
75
|
-
thread_safe (~> 0.1)
|
76
|
-
xcodeproj (1.6.0)
|
77
|
-
CFPropertyList (>= 2.3.3, < 4.0)
|
78
|
-
atomos (~> 0.1.3)
|
79
|
-
claide (>= 1.0.2, < 2.0)
|
80
|
-
colored2 (~> 3.1)
|
81
|
-
nanaimo (~> 0.2.6)
|
82
|
-
|
83
|
-
PLATFORMS
|
84
|
-
ruby
|
85
|
-
|
86
|
-
DEPENDENCIES
|
87
|
-
bacon
|
88
|
-
bundler (~> 1.3)
|
89
|
-
cocoapods
|
90
|
-
cocoapods-show-podpsecs-in-project!
|
91
|
-
mocha
|
92
|
-
mocha-on-bacon
|
93
|
-
prettybacon
|
94
|
-
rake
|
95
|
-
|
96
|
-
BUNDLED WITH
|
97
|
-
1.17.0
|