cocoapods-binary-gcp 0.0.1 → 0.0.2
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 +4 -4
- data/{cocoapods-binary.gemspec → cocoapods-binary-gcp.gemspec} +1 -1
- data/lib/cocoapods-binary-gcp.rb +1 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/Integration.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/Main.rb +2 -2
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/Prebuild.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/gem_version.rb +1 -1
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/helper/feature_switches.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/helper/names.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/helper/passer.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/helper/podfile_options.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/helper/prebuild_sandbox.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/helper/shared_cache.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/helper/target_checker.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/rome/build_framework.rb +0 -0
- data/lib/{cocoapods-binary → cocoapods-binary-gcp}/tool/tool.rb +0 -0
- data/lib/cocoapods_plugin.rb +1 -1
- metadata +16 -16
- data/lib/cocoapods-binary.rb +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0af41db5d7274041ef360e2bbade3e9bc0229c5
|
|
4
|
+
data.tar.gz: 1bc0bd0873223968cca5e0c436e0dddd0d59bd8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c642f693cd1eb0fcbe4af4fac9d8f7f7747c74b4d73c10542a2676867e735b0fa455734827c2cac730b48f324ccf97ef350d86c367680767688fd4d673be335b
|
|
7
|
+
data.tar.gz: afb46043c72e0dfe7c248b82cb644a8d8e6a6feafa3841890f49492609e2ed24b835ec5dd5963d16f2254e9f77b41cc20cc8d9663749fc2721c54685d8eec3c1
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'cocoapods-binary/gem_version.rb'
|
|
4
|
+
require 'cocoapods-binary-gcp/gem_version.rb'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'cocoapods-binary-gcp'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'cocoapods-binary-gcp/gem_version'
|
|
File without changes
|
|
@@ -113,7 +113,7 @@ module Pod
|
|
|
113
113
|
end
|
|
114
114
|
end
|
|
115
115
|
|
|
116
|
-
Pod::HooksManager.register('cocoapods-binary', :pre_install) do |installer_context|
|
|
116
|
+
Pod::HooksManager.register('cocoapods-binary-gcp', :pre_install) do |installer_context|
|
|
117
117
|
|
|
118
118
|
require_relative 'helper/feature_switches'
|
|
119
119
|
if Pod.is_prebuild_stage
|
|
@@ -126,7 +126,7 @@ Pod::HooksManager.register('cocoapods-binary', :pre_install) do |installer_conte
|
|
|
126
126
|
podfile.target_definition_list.each do |target_definition|
|
|
127
127
|
next if target_definition.prebuild_framework_pod_names.empty?
|
|
128
128
|
if not target_definition.uses_frameworks?
|
|
129
|
-
STDERR.puts "[!] Cocoapods-binary requires `use_frameworks!`".red
|
|
129
|
+
STDERR.puts "[!] Cocoapods-binary-gcp requires `use_frameworks!`".red
|
|
130
130
|
exit
|
|
131
131
|
end
|
|
132
132
|
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/cocoapods_plugin.rb
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
require 'cocoapods-binary/Main'
|
|
1
|
+
require 'cocoapods-binary-gcp/Main'
|
|
2
2
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-binary-gcp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- leavez
|
|
@@ -131,21 +131,21 @@ files:
|
|
|
131
131
|
- LICENSE.txt
|
|
132
132
|
- README.md
|
|
133
133
|
- Rakefile
|
|
134
|
-
- cocoapods-binary.gemspec
|
|
135
|
-
- lib/cocoapods-binary.rb
|
|
136
|
-
- lib/cocoapods-binary/Integration.rb
|
|
137
|
-
- lib/cocoapods-binary/Main.rb
|
|
138
|
-
- lib/cocoapods-binary/Prebuild.rb
|
|
139
|
-
- lib/cocoapods-binary/gem_version.rb
|
|
140
|
-
- lib/cocoapods-binary/helper/feature_switches.rb
|
|
141
|
-
- lib/cocoapods-binary/helper/names.rb
|
|
142
|
-
- lib/cocoapods-binary/helper/passer.rb
|
|
143
|
-
- lib/cocoapods-binary/helper/podfile_options.rb
|
|
144
|
-
- lib/cocoapods-binary/helper/prebuild_sandbox.rb
|
|
145
|
-
- lib/cocoapods-binary/helper/shared_cache.rb
|
|
146
|
-
- lib/cocoapods-binary/helper/target_checker.rb
|
|
147
|
-
- lib/cocoapods-binary/rome/build_framework.rb
|
|
148
|
-
- lib/cocoapods-binary/tool/tool.rb
|
|
134
|
+
- cocoapods-binary-gcp.gemspec
|
|
135
|
+
- lib/cocoapods-binary-gcp.rb
|
|
136
|
+
- lib/cocoapods-binary-gcp/Integration.rb
|
|
137
|
+
- lib/cocoapods-binary-gcp/Main.rb
|
|
138
|
+
- lib/cocoapods-binary-gcp/Prebuild.rb
|
|
139
|
+
- lib/cocoapods-binary-gcp/gem_version.rb
|
|
140
|
+
- lib/cocoapods-binary-gcp/helper/feature_switches.rb
|
|
141
|
+
- lib/cocoapods-binary-gcp/helper/names.rb
|
|
142
|
+
- lib/cocoapods-binary-gcp/helper/passer.rb
|
|
143
|
+
- lib/cocoapods-binary-gcp/helper/podfile_options.rb
|
|
144
|
+
- lib/cocoapods-binary-gcp/helper/prebuild_sandbox.rb
|
|
145
|
+
- lib/cocoapods-binary-gcp/helper/shared_cache.rb
|
|
146
|
+
- lib/cocoapods-binary-gcp/helper/target_checker.rb
|
|
147
|
+
- lib/cocoapods-binary-gcp/rome/build_framework.rb
|
|
148
|
+
- lib/cocoapods-binary-gcp/tool/tool.rb
|
|
149
149
|
- lib/cocoapods_plugin.rb
|
|
150
150
|
- spec/spec_helper.rb
|
|
151
151
|
homepage: https://github.com/HelloCore/cocoapods-binary
|
data/lib/cocoapods-binary.rb
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
require 'cocoapods-binary/gem_version'
|