cocoapods-readonly 1.0.0 → 1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b2de0f52f4724cf22b6150f1d55e855165e5944
|
|
4
|
+
data.tar.gz: 44b2110b3e44d2626caf937728745188d3803128
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a166d38eff6857af33dd9322366459485b40a66aba1e1b82a70d552ed6b0e2952bb116584e3a4b1c93ed8bff05c8d34da31735ca07aea6c3e7177d6f567d4fdf
|
|
7
|
+
data.tar.gz: 709b4b44eb14c062a73d6d6e53d9cd8cb78869204bb4c9276b0e03490b2d0b76985875d2da7bb7f63e180f29d9ca8fb3396f60b8c3904c3ab84cc0d846770973
|
data/cocoapods-readonly.gemspec
CHANGED
|
@@ -6,8 +6,8 @@ require 'cocoapods-readonly/gem_version.rb'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "cocoapods-readonly"
|
|
8
8
|
spec.version = CocoapodsReadonly::VERSION
|
|
9
|
-
spec.authors = ["Mason Glidden"]
|
|
10
|
-
spec.email = ["mglidden@yelp.com"]
|
|
9
|
+
spec.authors = ["Mason Glidden", "Yelp"]
|
|
10
|
+
spec.email = ["mglidden@yelp.com", "mobile@yelp.com"]
|
|
11
11
|
spec.description = %q{Makes CocoaPods source files read-only, so you can't accidently modify them.}
|
|
12
12
|
spec.summary = %q{Developers switching from submodules are used to modifying library source files from within Xcode. This locks those files as needed so Xcode warns you when attempting to edit.}
|
|
13
13
|
spec.homepage = "https://github.com/Yelp/cocoapods-readonly"
|
|
@@ -5,7 +5,7 @@ module Pod
|
|
|
5
5
|
for pod in installer.pods
|
|
6
6
|
# if the pod is actually in Pods/, and not a :path linked pod
|
|
7
7
|
if pod.root.parent == installer.sandbox_root
|
|
8
|
-
for file in pod.
|
|
8
|
+
for file in Dir.glob(pod.root + '**/*').reject { |f| File.directory?(f) }
|
|
9
9
|
File.chmod(permissions, file)
|
|
10
10
|
end
|
|
11
11
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-readonly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mason Glidden
|
|
8
|
+
- Yelp
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2015-04-
|
|
12
|
+
date: 2015-04-15 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: bundler
|
|
@@ -42,6 +43,7 @@ description: Makes CocoaPods source files read-only, so you can't accidently mod
|
|
|
42
43
|
them.
|
|
43
44
|
email:
|
|
44
45
|
- mglidden@yelp.com
|
|
46
|
+
- mobile@yelp.com
|
|
45
47
|
executables: []
|
|
46
48
|
extensions: []
|
|
47
49
|
extra_rdoc_files: []
|