cocoapods_debug 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +3 -0
- data/CHANGELOG.md +6 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +113 -0
- data/LICENSE.txt +22 -0
- data/README.md +11 -0
- data/Rakefile +10 -0
- data/cocoapods-debug.gemspec +24 -0
- data/lib/cocoapods_debug.rb +1 -0
- data/lib/cocoapods_debug/command.rb +1 -0
- data/lib/cocoapods_debug/command/debug.rb +13 -0
- data/lib/cocoapods_debug/gem_version.rb +3 -0
- data/lib/cocoapods_plugin.rb +1 -0
- data/spec/command/debug_spec.rb +21 -0
- data/spec/spec_helper.rb +45 -0
- metadata +103 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5968c415816544cc9bb8cb3955e3b85b0c40db4a
|
4
|
+
data.tar.gz: e991ceba888106bc4cf7463461dbee6f4b799fa9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ec4bde2ae5698ff60d274bccb0517f2d3ce9cd937372a56e8960a3ff89b71829dd5c0df01fb1068013b4e6b54ebe594410c68eb01e2c376041751b1e85cc690c
|
7
|
+
data.tar.gz: ca9d4608694b6dd0b36a64e3b01d402beca60b9742da17c5e3badfa5bbc44e4d70c47aeb39e8e4c8a38ea16a67ccc2e1ab956a5fc987e511eba8eb6ddc7da9a7
|
data/.gitignore
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cocoapods_debug (0.1.0)
|
5
|
+
pry (= 0.10.3)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (4.2.5.1)
|
11
|
+
i18n (~> 0.7)
|
12
|
+
json (~> 1.7, >= 1.7.7)
|
13
|
+
minitest (~> 5.1)
|
14
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
15
|
+
tzinfo (~> 1.1)
|
16
|
+
ast (2.2.0)
|
17
|
+
claide (1.0.0.beta.1)
|
18
|
+
cocoapods (1.0.0.beta.4)
|
19
|
+
activesupport (>= 4.0.2)
|
20
|
+
claide (>= 1.0.0.beta.1, < 2.0)
|
21
|
+
cocoapods-core (= 1.0.0.beta.4)
|
22
|
+
cocoapods-deintegrate (>= 1.0.0.beta.1, < 2.0)
|
23
|
+
cocoapods-downloader (>= 1.0.0.beta.1, < 2.0)
|
24
|
+
cocoapods-plugins (>= 1.0.0.beta.1, < 2.0)
|
25
|
+
cocoapods-search (>= 1.0.0.beta.1, < 2.0)
|
26
|
+
cocoapods-stats (>= 1.0.0.beta.3, < 2.0)
|
27
|
+
cocoapods-trunk (>= 1.0.0.beta.2, < 2.0)
|
28
|
+
cocoapods-try (>= 1.0.0.beta.2, < 2.0)
|
29
|
+
colored (~> 1.2)
|
30
|
+
escape (~> 0.0.4)
|
31
|
+
fourflusher (~> 0.3.0)
|
32
|
+
molinillo (~> 0.4.3)
|
33
|
+
nap (~> 1.0)
|
34
|
+
xcodeproj (>= 1.0.0.beta.3, < 2.0)
|
35
|
+
cocoapods-core (1.0.0.beta.4)
|
36
|
+
activesupport (>= 4.0.2)
|
37
|
+
fuzzy_match (~> 2.0.4)
|
38
|
+
nap (~> 1.0)
|
39
|
+
cocoapods-deintegrate (1.0.0.beta.1)
|
40
|
+
cocoapods-downloader (1.0.0.beta.1)
|
41
|
+
cocoapods-plugins (1.0.0.beta.1)
|
42
|
+
nap
|
43
|
+
cocoapods-search (1.0.0.beta.1)
|
44
|
+
cocoapods-stats (1.0.0.beta.3)
|
45
|
+
cocoapods-trunk (1.0.0.beta.2)
|
46
|
+
nap (>= 0.8, < 2.0)
|
47
|
+
netrc (= 0.7.8)
|
48
|
+
cocoapods-try (1.0.0.beta.2)
|
49
|
+
coderay (1.1.0)
|
50
|
+
colored (1.2)
|
51
|
+
diff-lcs (1.2.5)
|
52
|
+
escape (0.0.4)
|
53
|
+
fourflusher (0.3.0)
|
54
|
+
fuzzy_match (2.0.4)
|
55
|
+
i18n (0.7.0)
|
56
|
+
json (1.8.3)
|
57
|
+
method_source (0.8.2)
|
58
|
+
minitest (5.8.4)
|
59
|
+
molinillo (0.4.3)
|
60
|
+
nap (1.1.0)
|
61
|
+
netrc (0.7.8)
|
62
|
+
parser (2.3.0.6)
|
63
|
+
ast (~> 2.2)
|
64
|
+
powerpack (0.1.1)
|
65
|
+
pry (0.10.3)
|
66
|
+
coderay (~> 1.1.0)
|
67
|
+
method_source (~> 0.8.1)
|
68
|
+
slop (~> 3.4)
|
69
|
+
rainbow (2.1.0)
|
70
|
+
rake (10.5.0)
|
71
|
+
rspec (3.4.0)
|
72
|
+
rspec-core (~> 3.4.0)
|
73
|
+
rspec-expectations (~> 3.4.0)
|
74
|
+
rspec-mocks (~> 3.4.0)
|
75
|
+
rspec-core (3.4.3)
|
76
|
+
rspec-support (~> 3.4.0)
|
77
|
+
rspec-expectations (3.4.0)
|
78
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
79
|
+
rspec-support (~> 3.4.0)
|
80
|
+
rspec-mocks (3.4.1)
|
81
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
82
|
+
rspec-support (~> 3.4.0)
|
83
|
+
rspec-support (3.4.1)
|
84
|
+
rubocop (0.37.2)
|
85
|
+
parser (>= 2.3.0.4, < 3.0)
|
86
|
+
powerpack (~> 0.1)
|
87
|
+
rainbow (>= 1.99.1, < 3.0)
|
88
|
+
ruby-progressbar (~> 1.7)
|
89
|
+
unicode-display_width (~> 0.3)
|
90
|
+
ruby-progressbar (1.7.5)
|
91
|
+
slop (3.6.0)
|
92
|
+
thread_safe (0.3.5)
|
93
|
+
tzinfo (1.2.2)
|
94
|
+
thread_safe (~> 0.1)
|
95
|
+
unicode-display_width (0.3.1)
|
96
|
+
xcodeproj (1.0.0.beta.3)
|
97
|
+
activesupport (>= 3)
|
98
|
+
claide (>= 1.0.0.beta.1, < 2.0)
|
99
|
+
colored (~> 1.2)
|
100
|
+
|
101
|
+
PLATFORMS
|
102
|
+
ruby
|
103
|
+
|
104
|
+
DEPENDENCIES
|
105
|
+
bundler (~> 1.3)
|
106
|
+
cocoapods (> 0.a)
|
107
|
+
cocoapods_debug!
|
108
|
+
rake
|
109
|
+
rspec (~> 3.4)
|
110
|
+
rubocop (~> 0.37.1)
|
111
|
+
|
112
|
+
BUNDLED WITH
|
113
|
+
1.12.0.pre.1
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2016 Samuel Giddins <segiddins@segiddins.me>
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'cocoapods_debug/gem_version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'cocoapods_debug'
|
8
|
+
spec.version = CocoapodsDebug::VERSION
|
9
|
+
spec.authors = ['Samuel Giddins']
|
10
|
+
spec.email = ['segiddins@segiddins.me']
|
11
|
+
spec.summary = 'A simple plugin to ease debugging CocoaPods.'
|
12
|
+
spec.homepage = 'https://github.com/segiddins/cocoapods_debug'
|
13
|
+
spec.license = 'MIT'
|
14
|
+
|
15
|
+
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ['lib']
|
19
|
+
|
20
|
+
spec.add_runtime_dependency 'pry', '0.10.3'
|
21
|
+
|
22
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
23
|
+
spec.add_development_dependency 'rake'
|
24
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'cocoapods_debug/gem_version'
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'cocoapods_debug/command/debug'
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'cocoapods_debug/command'
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Pod
|
4
|
+
describe Command::Debug do
|
5
|
+
let(:args) { %w(debug) }
|
6
|
+
subject { Command.parse(args) }
|
7
|
+
|
8
|
+
describe 'CLAide' do
|
9
|
+
it 'registers it self' do
|
10
|
+
expect(subject).to be_instance_of(Command::Debug)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe '#run' do
|
15
|
+
it 'starts a pry session' do
|
16
|
+
expect(subject).to receive(:pry).with(Pod::Config.instance)
|
17
|
+
subject.run
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'bundler/setup'
|
2
|
+
|
3
|
+
require 'cocoapods'
|
4
|
+
require 'cocoapods_debug/command'
|
5
|
+
|
6
|
+
#-----------------------------------------------------------------------------#
|
7
|
+
|
8
|
+
module Pod
|
9
|
+
# Disable the wrapping so the output is deterministic in the tests.
|
10
|
+
#
|
11
|
+
UI.disable_wrap = true
|
12
|
+
|
13
|
+
# Redirects the messages to an internal store.
|
14
|
+
#
|
15
|
+
module UI
|
16
|
+
@output = ''
|
17
|
+
@warnings = ''
|
18
|
+
|
19
|
+
class << self
|
20
|
+
attr_accessor :output
|
21
|
+
attr_accessor :warnings
|
22
|
+
|
23
|
+
def puts(message = '')
|
24
|
+
@output << "#{message}\n"
|
25
|
+
end
|
26
|
+
|
27
|
+
def warn(message = '', _actions = [])
|
28
|
+
@warnings << "#{message}\n"
|
29
|
+
end
|
30
|
+
|
31
|
+
def print(message)
|
32
|
+
@output << message
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
#-----------------------------------------------------------------------------#
|
39
|
+
|
40
|
+
RSpec.configure do |config|
|
41
|
+
config.before(:each) do
|
42
|
+
Pod::UI.output = ''
|
43
|
+
Pod::UI.warnings = ''
|
44
|
+
end
|
45
|
+
end
|
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods_debug
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Samuel Giddins
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-02-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: pry
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.10.3
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.10.3
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- segiddins@segiddins.me
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- CHANGELOG.md
|
64
|
+
- Gemfile
|
65
|
+
- Gemfile.lock
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- cocoapods-debug.gemspec
|
70
|
+
- lib/cocoapods_debug.rb
|
71
|
+
- lib/cocoapods_debug/command.rb
|
72
|
+
- lib/cocoapods_debug/command/debug.rb
|
73
|
+
- lib/cocoapods_debug/gem_version.rb
|
74
|
+
- lib/cocoapods_plugin.rb
|
75
|
+
- spec/command/debug_spec.rb
|
76
|
+
- spec/spec_helper.rb
|
77
|
+
homepage: https://github.com/segiddins/cocoapods_debug
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.5.2
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: A simple plugin to ease debugging CocoaPods.
|
101
|
+
test_files:
|
102
|
+
- spec/command/debug_spec.rb
|
103
|
+
- spec/spec_helper.rb
|