cocoapods-deploy 0.0.3 → 0.0.4
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-deploy.gemspec +2 -2
- data/lib/cocoapods-deploy/command/deploy.rb +2 -2
- data/lib/cocoapods-deploy/gem_version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e393bffd3f9f720bb14107de16e6416afcedf96
|
4
|
+
data.tar.gz: 7c5d1553e864ceba8b972deb89ed3267559d6ad8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef4d929e745cb8747cce8989110da15d1769b682c12213d4dac27edc095333fd3b16557f9e980c32789c6bf732683404f5d6bf876a2334c0cf5d5d553b4c349b
|
7
|
+
data.tar.gz: 93852374b9c64cb900be51b2b6affaff18e18c081f3b38c0d9286dbc3dfc77af8adca9751a168589a17dc1290b58ec39f2ff16ab9b2ff1a92dbddbd27876aeb7
|
data/cocoapods-deploy.gemspec
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: cocoapods-deploy 0.0.
|
2
|
+
# stub: cocoapods-deploy 0.0.4 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "cocoapods-deploy"
|
6
|
-
s.version = "0.0.
|
6
|
+
s.version = "0.0.4"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib"]
|
@@ -148,10 +148,10 @@ module Pod
|
|
148
148
|
end
|
149
149
|
|
150
150
|
def run_install_with_update(update)
|
151
|
-
ENV['COCOAPODS_DISABLE_STATS'] = true #Disable Cocoapods Stats
|
151
|
+
ENV['COCOAPODS_DISABLE_STATS'] = "true" #Disable Cocoapods Stats
|
152
152
|
config.skip_repo_update = true #Force this to be true so it is always skipped
|
153
153
|
config.clean = false #Disable source files from being cleaned
|
154
|
-
|
154
|
+
|
155
155
|
#TODO: Work out way of transforming dependencies without patch
|
156
156
|
apply_dependency_patches
|
157
157
|
|