cocoapods-expert-difficulty 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 +10 -0
- data/LICENSE.txt +22 -0
- data/README.md +21 -0
- data/Rakefile +13 -0
- data/cocoapods-expert-difficulty.gemspec +23 -0
- data/lib/cocoapods-expert-difficulty.rb +1 -0
- data/lib/cocoapods-expert-difficulty/gem_version.rb +3 -0
- data/lib/cocoapods_plugin.rb +31 -0
- data/spec/command/difficulty_spec.rb +12 -0
- data/spec/spec_helper.rb +45 -0
- metadata +85 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b15621f724abaaaba9aea65f2f6e7d7abf90bdb8
|
4
|
+
data.tar.gz: c25a11fd282ae5be01541e59ada56f2f46491c83
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9225df1b11479e896722c3bb4530d8ad1fd283db2ed3a732277f3c1b2df54be07b41573678c45f4020c9b02891fb32be41f4367088e236efd143a3b9c1a91832
|
7
|
+
data.tar.gz: fc1a7fa8ffcb0056dcce7b11d4cdd3210bced4fc21e4fd8220b8d6f159d1f361f81021edd850c05ab6dba279b3aa5e5a37819280471d03ff2fda6020f766e072
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Orta Therox <orta.therox@gmail.com>
|
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
@@ -0,0 +1,21 @@
|
|
1
|
+
# CocoaPods Expert Difficulty
|
2
|
+
|
3
|
+
Is forcing everyone to update to `watchOS` or `tvOS` getting you down? Well now you can say "screw you CocoaPods, I know what I'm doing". Then CocoaPods will allow you to use any pod on any platform.
|
4
|
+
|
5
|
+
This can break things. Obviously. So, err, use it for hacking, then do it properly.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Use a Gemfile. [Here's a guide](http://guides.cocoapods.org/using/a-gemfile.html)
|
10
|
+
|
11
|
+
Gemfile:
|
12
|
+
```
|
13
|
+
gem "cocoapods"
|
14
|
+
gem "cocoapods-expert-difficulty"
|
15
|
+
```
|
16
|
+
|
17
|
+
Podfile:
|
18
|
+
```
|
19
|
+
plugin "cocoapods-expert-difficulty"
|
20
|
+
[...]
|
21
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'cocoapods-expert-difficulty/gem_version.rb'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'cocoapods-expert-difficulty'
|
8
|
+
spec.version = CocoapodsExpertDifficulty::VERSION
|
9
|
+
spec.authors = ['Orta Therox']
|
10
|
+
spec.email = ['orta.therox@gmail.com']
|
11
|
+
spec.description = %q{Ignore platforms in other people's Podspecs.}
|
12
|
+
spec.summary = %q{Avoid making a lot of PRs adding a single platform to pods.}
|
13
|
+
spec.homepage = 'https://github.com/orta/cocoapods-expert-difficulty'
|
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.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
22
|
+
spec.add_development_dependency 'rake'
|
23
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'cocoapods-expert-difficulty/gem_version'
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'cocoapods'
|
2
|
+
|
3
|
+
module CocoaPodsExpert
|
4
|
+
|
5
|
+
Pod::HooksManager.register('cocoapods-expert-difficulty', :pre_install) do |context, _|
|
6
|
+
Pod::UI.titled_section 'Supporting all platforms in CocoaPods' do
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
end
|
11
|
+
|
12
|
+
module Pod
|
13
|
+
class Specification
|
14
|
+
alias_method :tvos_supported_platform_names, :supported_platform_names
|
15
|
+
|
16
|
+
def supported_platform_names
|
17
|
+
# if there's no Podfile config do default
|
18
|
+
return tvos_supported_platform_names if validates_for_expert
|
19
|
+
|
20
|
+
# Otherwise return all platforms for all pods
|
21
|
+
names = PLATFORMS
|
22
|
+
names.map { |name| Platform.new(name, deployment_target(name)) }
|
23
|
+
end
|
24
|
+
|
25
|
+
def validates_for_keys
|
26
|
+
podfile = Pod::Config.instance.podfile
|
27
|
+
podfile && podfile.plugins && !podfile.plugins['cocoapods-expert-difficulty'].nil?
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
module Pod
|
4
|
+
describe Command::Difficulty do
|
5
|
+
describe 'CLAide' do
|
6
|
+
it 'registers it self' do
|
7
|
+
Command.parse(%w{ difficulty }).should.be.instance_of Command::Difficulty
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'pathname'
|
2
|
+
ROOT = Pathname.new(File.expand_path('../../', __FILE__))
|
3
|
+
$:.unshift((ROOT + 'lib').to_s)
|
4
|
+
$:.unshift((ROOT + 'spec').to_s)
|
5
|
+
|
6
|
+
require 'bundler/setup'
|
7
|
+
require 'bacon'
|
8
|
+
require 'cocoapods'
|
9
|
+
|
10
|
+
require 'cocoapods_plugin'
|
11
|
+
|
12
|
+
#-----------------------------------------------------------------------------#
|
13
|
+
|
14
|
+
module Pod
|
15
|
+
|
16
|
+
# Disable the wrapping so the output is deterministic in the tests.
|
17
|
+
#
|
18
|
+
UI.disable_wrap = true
|
19
|
+
|
20
|
+
# Redirects the messages to an internal store.
|
21
|
+
#
|
22
|
+
module UI
|
23
|
+
@output = ''
|
24
|
+
@warnings = ''
|
25
|
+
|
26
|
+
class << self
|
27
|
+
attr_accessor :output
|
28
|
+
attr_accessor :warnings
|
29
|
+
|
30
|
+
def puts(message = '')
|
31
|
+
@output << "#{message}\n"
|
32
|
+
end
|
33
|
+
|
34
|
+
def warn(message = '', actions = [])
|
35
|
+
@warnings << "#{message}\n"
|
36
|
+
end
|
37
|
+
|
38
|
+
def print(message)
|
39
|
+
@output << message
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
#-----------------------------------------------------------------------------#
|
metadata
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods-expert-difficulty
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Orta Therox
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-09-12 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: Ignore platforms in other people's Podspecs.
|
42
|
+
email:
|
43
|
+
- orta.therox@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- cocoapods-expert-difficulty.gemspec
|
54
|
+
- lib/cocoapods-expert-difficulty.rb
|
55
|
+
- lib/cocoapods-expert-difficulty/gem_version.rb
|
56
|
+
- lib/cocoapods_plugin.rb
|
57
|
+
- spec/command/difficulty_spec.rb
|
58
|
+
- spec/spec_helper.rb
|
59
|
+
homepage: https://github.com/orta/cocoapods-expert-difficulty
|
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.2.2
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: Avoid making a lot of PRs adding a single platform to pods.
|
83
|
+
test_files:
|
84
|
+
- spec/command/difficulty_spec.rb
|
85
|
+
- spec/spec_helper.rb
|