cocoapods-always-be-bundleing 0.0.1
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/Gemfile +13 -0
- data/Gemfile.lock +84 -0
- data/LICENSE.txt +22 -0
- data/README.md +11 -0
- data/Rakefile +13 -0
- data/cocoapods-always-be-bundleing.gemspec +23 -0
- data/lib/cocoapods-always-be-bundleing.rb +1 -0
- data/lib/cocoapods-always-be-bundleing/gem_version.rb +3 -0
- data/lib/cocoapods_plugin.rb +1 -0
- data/spec/command/bundleing_spec.rb +12 -0
- data/spec/spec_helper.rb +50 -0
- metadata +90 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 617b8eb2cbe1b27dcd03ae233111b972367eabd5
|
4
|
+
data.tar.gz: 844fe6a4b3f0564d6410b28f3671c712ea94f6c4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2f77762c72f366c870c00fc08115f958875a7693faf8497301aed43a0b244d4a3c69938f2b11b66bffbf27f96d4949cfe4f669419901b470285ccf89425ecd72
|
7
|
+
data.tar.gz: dcdf207777ca08ff1eb5956cc88a0256ca042ed32c1e760e25e3843654a8f66b1a9ae020736f8152fd7a1bd7811d96817aa8a8b1d078529a297c75af0e35c8ba
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cocoapods-always-be-bundleing (0.0.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
activesupport (4.2.5.1)
|
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.39.0)
|
18
|
+
activesupport (>= 4.0.2)
|
19
|
+
claide (~> 0.9.1)
|
20
|
+
cocoapods-core (= 0.39.0)
|
21
|
+
cocoapods-downloader (~> 0.9.3)
|
22
|
+
cocoapods-plugins (~> 0.4.2)
|
23
|
+
cocoapods-search (~> 0.1.0)
|
24
|
+
cocoapods-stats (~> 0.6.2)
|
25
|
+
cocoapods-trunk (~> 0.6.4)
|
26
|
+
cocoapods-try (~> 0.5.1)
|
27
|
+
colored (~> 1.2)
|
28
|
+
escape (~> 0.0.4)
|
29
|
+
molinillo (~> 0.4.0)
|
30
|
+
nap (~> 1.0)
|
31
|
+
xcodeproj (~> 0.28.2)
|
32
|
+
cocoapods-core (0.39.0)
|
33
|
+
activesupport (>= 4.0.2)
|
34
|
+
fuzzy_match (~> 2.0.4)
|
35
|
+
nap (~> 1.0)
|
36
|
+
cocoapods-downloader (0.9.3)
|
37
|
+
cocoapods-plugins (0.4.2)
|
38
|
+
nap
|
39
|
+
cocoapods-search (0.1.0)
|
40
|
+
cocoapods-stats (0.6.2)
|
41
|
+
cocoapods-trunk (0.6.4)
|
42
|
+
nap (>= 0.8, < 2.0)
|
43
|
+
netrc (= 0.7.8)
|
44
|
+
cocoapods-try (0.5.1)
|
45
|
+
colored (1.2)
|
46
|
+
escape (0.0.4)
|
47
|
+
fuzzy_match (2.0.4)
|
48
|
+
i18n (0.7.0)
|
49
|
+
json (1.8.3)
|
50
|
+
metaclass (0.0.4)
|
51
|
+
minitest (5.8.4)
|
52
|
+
mocha (1.1.0)
|
53
|
+
metaclass (~> 0.0.1)
|
54
|
+
mocha-on-bacon (0.2.2)
|
55
|
+
mocha (>= 0.13.0)
|
56
|
+
molinillo (0.4.1)
|
57
|
+
nap (1.1.0)
|
58
|
+
netrc (0.7.8)
|
59
|
+
prettybacon (0.0.2)
|
60
|
+
bacon (~> 1.2)
|
61
|
+
rake (10.4.2)
|
62
|
+
thread_safe (0.3.5)
|
63
|
+
tzinfo (1.2.2)
|
64
|
+
thread_safe (~> 0.1)
|
65
|
+
xcodeproj (0.28.2)
|
66
|
+
activesupport (>= 3)
|
67
|
+
claide (~> 0.9.1)
|
68
|
+
colored (~> 1.2)
|
69
|
+
|
70
|
+
PLATFORMS
|
71
|
+
ruby
|
72
|
+
|
73
|
+
DEPENDENCIES
|
74
|
+
bacon
|
75
|
+
bundler (~> 1.3)
|
76
|
+
cocoapods
|
77
|
+
cocoapods-always-be-bundleing!
|
78
|
+
mocha
|
79
|
+
mocha-on-bacon
|
80
|
+
prettybacon
|
81
|
+
rake
|
82
|
+
|
83
|
+
BUNDLED WITH
|
84
|
+
1.11.0
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2016 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
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-always-be-bundleing/gem_version.rb'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'cocoapods-always-be-bundleing'
|
8
|
+
spec.version = CocoapodsAlwaysBeBundleing::VERSION
|
9
|
+
spec.authors = ['Orta Therox']
|
10
|
+
spec.email = ['orta.therox@gmail.com']
|
11
|
+
spec.description = "Don't allow usage of just `pod install` - require that you use it through `bundle exec pod install`"
|
12
|
+
spec.summary = "Doing a simple `pod install` will use the latest version of CocoaPods - this plugin requires that you use it through `bundle exec pod install` instead, ensuring you always have the right versions from the Gemfile.lock."
|
13
|
+
spec.homepage = 'https://github.com/orta/cocoapods-always-be-bundleing'
|
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-always-be-bundleing/gem_version'
|
@@ -0,0 +1 @@
|
|
1
|
+
abort "Please run `pod install` with bundle exec instead." unless defined?(Bundler)
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
module Pod
|
4
|
+
describe Command::Bundleing do
|
5
|
+
describe 'CLAide' do
|
6
|
+
it 'registers it self' do
|
7
|
+
Command.parse(%w{ bundleing }).should.be.instance_of Command::Bundleing
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,50 @@
|
|
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 'mocha-on-bacon'
|
9
|
+
require 'pretty_bacon'
|
10
|
+
require 'pathname'
|
11
|
+
require 'cocoapods'
|
12
|
+
|
13
|
+
Mocha::Configuration.prevent(:stubbing_non_existent_method)
|
14
|
+
|
15
|
+
require 'cocoapods_plugin'
|
16
|
+
|
17
|
+
#-----------------------------------------------------------------------------#
|
18
|
+
|
19
|
+
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
|
+
end
|
49
|
+
|
50
|
+
#-----------------------------------------------------------------------------#
|
metadata
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods-always-be-bundleing
|
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: 2016-02-16 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 allow usage of just `pod install` - require that you use it through
|
42
|
+
`bundle exec pod install`
|
43
|
+
email:
|
44
|
+
- orta.therox@gmail.com
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- ".gitignore"
|
50
|
+
- Gemfile
|
51
|
+
- Gemfile.lock
|
52
|
+
- LICENSE.txt
|
53
|
+
- README.md
|
54
|
+
- Rakefile
|
55
|
+
- cocoapods-always-be-bundleing.gemspec
|
56
|
+
- lib/cocoapods-always-be-bundleing.rb
|
57
|
+
- lib/cocoapods-always-be-bundleing/gem_version.rb
|
58
|
+
- lib/cocoapods_plugin.rb
|
59
|
+
- spec/command/bundleing_spec.rb
|
60
|
+
- spec/spec_helper.rb
|
61
|
+
homepage: https://github.com/orta/cocoapods-always-be-bundleing
|
62
|
+
licenses:
|
63
|
+
- MIT
|
64
|
+
metadata: {}
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
requirements: []
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 2.2.2
|
82
|
+
signing_key:
|
83
|
+
specification_version: 4
|
84
|
+
summary: Doing a simple `pod install` will use the latest version of CocoaPods - this
|
85
|
+
plugin requires that you use it through `bundle exec pod install` instead, ensuring
|
86
|
+
you always have the right versions from the Gemfile.lock.
|
87
|
+
test_files:
|
88
|
+
- spec/command/bundleing_spec.rb
|
89
|
+
- spec/spec_helper.rb
|
90
|
+
has_rdoc:
|