cocoapods-developing-folder 0.5.3 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: cebe079c88fb59c78cd6d95c7dbe8ed6ceba9e76a1a61156f20c7eea0092377f
4
- data.tar.gz: 67df2aa202eb343e88837d46796bd1fc095dac0040b164a423694220d029c098
2
+ SHA1:
3
+ metadata.gz: '029ad93a15671015fe1f37275e5b6c917eb25899'
4
+ data.tar.gz: 1bd0690842ac7b1b865589baf3726832010c9e65
5
5
  SHA512:
6
- metadata.gz: 02c4f1be44f649d24cdf0b42564f4932b865d86f311ce98b05534762ad9ad308a4e9512b54237c395f69f99ebad15be37111f058e69979b82ebdd751197e5e14
7
- data.tar.gz: cc8f0c64933bffca62b16a07c0ceaec5c3aa9227e87221832343ef6385250c4624d60a2c5b8cc0bc14c3792aad60002ffb5bfa5c0993e61dfcc5e1a50fd63534
6
+ metadata.gz: 68360918c0864107572480637fe0439d82bf948c2db36b9c39032ea29b9465b715bfafd5acfce9b683b90c4f5a59e434b6df78f73c90785427e4929d95ff9319
7
+ data.tar.gz: 57f4f93c8236e0d510947670082bd5747a15b817ec29973b2d3f6aeb686c4947d94abd1afd688d4519efa1aedae71fc170f55f120725da733b90641d67afd300
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cocoapods-developing-folder (0.0.4)
4
+ cocoapods-developing-folder (0.5.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -92,4 +92,4 @@ DEPENDENCIES
92
92
  rake
93
93
 
94
94
  BUNDLED WITH
95
- 1.16.0
95
+ 1.17.1
@@ -9,12 +9,14 @@ module Pod
9
9
  basePath = Pathname.new path
10
10
  def import_pod(path, *requirements)
11
11
  podspec = path.children.find do |p|
12
- !p.directory? and p.extname == ".podspec"
12
+ !p.directory? and (p.extname == ".podspec" or p.basename.to_s.end_with? ".podspec.json")
13
13
  end
14
14
  if podspec != nil
15
15
  options = (requirements.last || {}).clone
16
16
  options[:path] = unify_path(path).to_path
17
- pod(podspec.basename(".podspec").to_s, options)
17
+ name = podspec.basename(".json")
18
+ name = name.basename(".podspec")
19
+ pod(name.to_s, options)
18
20
  end
19
21
  path.children.each do |p|
20
22
  if p.directory?
@@ -1,3 +1,3 @@
1
1
  module CocoapodsDevelopingFolder
2
- VERSION = "0.5.3"
2
+ VERSION = "0.5.4"
3
3
  end
@@ -41,7 +41,7 @@ module Pod
41
41
 
42
42
  path = nil
43
43
  basePath.find do |p|
44
- if p.basename.to_s == "#{rootPodName}.podspec"
44
+ if p.basename.to_s == "#{rootPodName}.podspec" || p.basename.to_s == "#{rootPodName}.podspec.json"
45
45
  path = p
46
46
  break
47
47
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-developing-folder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - leavez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-03 00:00:00.000000000 Z
11
+ date: 2018-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  version: '0'
84
84
  requirements: []
85
85
  rubyforge_project:
86
- rubygems_version: 2.7.4
86
+ rubygems_version: 2.5.2.3
87
87
  signing_key:
88
88
  specification_version: 4
89
89
  summary: a branch of tools for who heavily use development pods