cocoapods-unchanged-source 0.0.1
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 +7 -0
- data/.gitignore +3 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +85 -0
- data/LICENSE +18 -0
- data/README.md +25 -0
- data/Rakefile +1 -0
- data/cocoapods-unchanged-source.gemspec +22 -0
- data/lib/cocoapods-unchanged-source.rb +1 -0
- data/lib/cocoapods-unchanged-source/gem_version.rb +3 -0
- data/lib/cocoapods-unchanged-source/unchanged_source.rb +8 -0
- data/lib/cocoapods_plugin.rb +1 -0
- metadata +84 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fba51ec6ef387c4896403c2c852c4ca7e991cd2f
|
4
|
+
data.tar.gz: 7da87dc385e3ca9861e6648e03195140cdabf931
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: '067128bb83ad43877227d90d9c79eb86d9daf104667cbc566267596c697362c90bd6b51203b9ba54291316f79578e0311a1599e0fa26afa8f69636db7ed1e7fb'
|
7
|
+
data.tar.gz: fa25e2858cc11996e9a40172ef3bdd4f5fd8e7a596d0316c766f59c0b170add51cb99173e9fc1aba89c7a83912c20fb33011db0c39c5785c00645f65326b885e
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cocoapods-unchanged-source (0.0.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
CFPropertyList (2.3.6)
|
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.2)
|
16
|
+
claide (1.0.2)
|
17
|
+
cocoapods (1.4.0)
|
18
|
+
activesupport (>= 4.0.2, < 5)
|
19
|
+
claide (>= 1.0.2, < 2.0)
|
20
|
+
cocoapods-core (= 1.4.0)
|
21
|
+
cocoapods-deintegrate (>= 1.0.2, < 2.0)
|
22
|
+
cocoapods-downloader (>= 1.1.3, < 2.0)
|
23
|
+
cocoapods-plugins (>= 1.0.0, < 2.0)
|
24
|
+
cocoapods-search (>= 1.0.0, < 2.0)
|
25
|
+
cocoapods-stats (>= 1.0.0, < 2.0)
|
26
|
+
cocoapods-trunk (>= 1.3.0, < 2.0)
|
27
|
+
cocoapods-try (>= 1.1.0, < 2.0)
|
28
|
+
colored2 (~> 3.1)
|
29
|
+
escape (~> 0.0.4)
|
30
|
+
fourflusher (~> 2.0.1)
|
31
|
+
gh_inspector (~> 1.0)
|
32
|
+
molinillo (~> 0.6.4)
|
33
|
+
nap (~> 1.0)
|
34
|
+
ruby-macho (~> 1.1)
|
35
|
+
xcodeproj (>= 1.5.4, < 2.0)
|
36
|
+
cocoapods-core (1.4.0)
|
37
|
+
activesupport (>= 4.0.2, < 6)
|
38
|
+
fuzzy_match (~> 2.0.4)
|
39
|
+
nap (~> 1.0)
|
40
|
+
cocoapods-deintegrate (1.0.2)
|
41
|
+
cocoapods-downloader (1.1.3)
|
42
|
+
cocoapods-plugins (1.0.0)
|
43
|
+
nap
|
44
|
+
cocoapods-search (1.0.0)
|
45
|
+
cocoapods-stats (1.0.0)
|
46
|
+
cocoapods-trunk (1.3.0)
|
47
|
+
nap (>= 0.8, < 2.0)
|
48
|
+
netrc (~> 0.11)
|
49
|
+
cocoapods-try (1.1.0)
|
50
|
+
colored2 (3.1.2)
|
51
|
+
concurrent-ruby (1.0.5)
|
52
|
+
escape (0.0.4)
|
53
|
+
fourflusher (2.0.1)
|
54
|
+
fuzzy_match (2.0.4)
|
55
|
+
gh_inspector (1.1.3)
|
56
|
+
i18n (0.9.5)
|
57
|
+
concurrent-ruby (~> 1.0)
|
58
|
+
minitest (5.11.3)
|
59
|
+
molinillo (0.6.4)
|
60
|
+
nanaimo (0.2.3)
|
61
|
+
nap (1.1.0)
|
62
|
+
netrc (0.11.0)
|
63
|
+
rake (12.3.0)
|
64
|
+
ruby-macho (1.1.0)
|
65
|
+
thread_safe (0.3.6)
|
66
|
+
tzinfo (1.2.5)
|
67
|
+
thread_safe (~> 0.1)
|
68
|
+
xcodeproj (1.5.6)
|
69
|
+
CFPropertyList (~> 2.3.3)
|
70
|
+
atomos (~> 0.1.2)
|
71
|
+
claide (>= 1.0.2, < 2.0)
|
72
|
+
colored2 (~> 3.1)
|
73
|
+
nanaimo (~> 0.2.3)
|
74
|
+
|
75
|
+
PLATFORMS
|
76
|
+
ruby
|
77
|
+
|
78
|
+
DEPENDENCIES
|
79
|
+
bundler (~> 1.3)
|
80
|
+
cocoapods
|
81
|
+
cocoapods-unchanged-source!
|
82
|
+
rake
|
83
|
+
|
84
|
+
BUNDLED WITH
|
85
|
+
1.16.0
|
data/LICENSE
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
Copyright (c) 2018 Keith Smiley (http://keith.so)
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the 'Software'), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
7
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
8
|
+
subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
11
|
+
copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
15
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
16
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
17
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
18
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# cocoapods-unchanged-source
|
2
|
+
|
3
|
+
A small CocoaPods plugin for assuming specs source repos are always out
|
4
|
+
of date. This is a workaround for this issue:
|
5
|
+
https://github.com/CocoaPods/CocoaPods/issues/7447
|
6
|
+
|
7
|
+
If you're using the official specs repo, this isn't recommended, since
|
8
|
+
the reason this check exists is to decreases the load on GitHub, and
|
9
|
+
avoids unnecessary `git pull`s. But if you're using a custom specs repo,
|
10
|
+
where the overhead of just doing a `git pull` isn't significant, this
|
11
|
+
can be useful.
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
```sh
|
16
|
+
$ gem install cocoapods-unchanged-source
|
17
|
+
```
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
In your `Podfile` add:
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
plugin 'cocoapods-unchanged-source'
|
25
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'cocoapods-unchanged-source/gem_version.rb'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'cocoapods-unchanged-source'
|
8
|
+
spec.version = CocoapodsUnchangedSource::VERSION
|
9
|
+
spec.authors = ['Keith Smiley']
|
10
|
+
spec.email = ['keithbsmiley@gmail.com']
|
11
|
+
spec.description = %q{Don't check if your specs source repo is outdated, just assume it is}
|
12
|
+
spec.summary = %q{Don't check if your specs source repo is outdated, just assume it is}
|
13
|
+
spec.homepage = 'https://github.com/keith/cocoapods-unchanged-source'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.require_paths = ['lib']
|
19
|
+
|
20
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
21
|
+
spec.add_development_dependency 'rake'
|
22
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'cocoapods-unchanged-source/gem_version'
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'cocoapods-unchanged-source/unchanged_source'
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods-unchanged-source
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Keith Smiley
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-03-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Don't check if your specs source repo is outdated, just assume it is
|
42
|
+
email:
|
43
|
+
- keithbsmiley@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- Gemfile.lock
|
51
|
+
- LICENSE
|
52
|
+
- README.md
|
53
|
+
- Rakefile
|
54
|
+
- cocoapods-unchanged-source.gemspec
|
55
|
+
- lib/cocoapods-unchanged-source.rb
|
56
|
+
- lib/cocoapods-unchanged-source/gem_version.rb
|
57
|
+
- lib/cocoapods-unchanged-source/unchanged_source.rb
|
58
|
+
- lib/cocoapods_plugin.rb
|
59
|
+
homepage: https://github.com/keith/cocoapods-unchanged-source
|
60
|
+
licenses:
|
61
|
+
- MIT
|
62
|
+
metadata: {}
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 2.5.2
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: Don't check if your specs source repo is outdated, just assume it is
|
83
|
+
test_files: []
|
84
|
+
has_rdoc:
|