podfile_generator 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dcedba77a5c6b429a630047cd9bcda27a19229b3
4
- data.tar.gz: 7a860bafefc252d7ba71eecdc5a907bfccb283fd
3
+ metadata.gz: 26914cfa801e941310ea94dee80e6c62f9760c18
4
+ data.tar.gz: 7abb7cc15434dcaa8db1559aa758eed01956051f
5
5
  SHA512:
6
- metadata.gz: f77e73e6bb9a8a944a66252adab0604b71194e61dc6d7ab08ee748ba6d62b6698a26eae7517095e9bcdc679845dd2ba2409395d6b4748bffe11430cd99fd0467
7
- data.tar.gz: 9dd7aed5388afc6a7f3ca4d8137aa7f30643ea8c41818a828fdb5ff7b539dadeb3010f45a5fefc2d34fee4829f96acd0405b2bf7d712b1fe19a863c6273d5a80
6
+ metadata.gz: 133fd35a110bdc4b24ab1e452e9a564f9a7546dc5bb6b9f629d9406790532215ddfb88be77546de4937af1a00b694ba76d451f80bbc48e3c789becce0803a6e3
7
+ data.tar.gz: c0ff7f9550100dc3943d844de89909babb5868ceee1d1ac0f70975abdfaec3ab5cb88f7815a055317256fdf944db2f8732e41569ba8faa2d832d948c3f44cf3d
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- podfile_generator (0.1.1)
4
+ podfile_generator (0.1.2)
5
5
  cocoapods-core (~> 1.2)
6
6
 
7
7
  GEM
@@ -9,8 +9,8 @@ module PodfileGenerator
9
9
  raise "podfile path is required" unless podfile_path
10
10
  raise "podfile template path is required" unless podfile_template_path
11
11
 
12
- @podfile_path = podfile_path
13
- @podfile_template_path = podfile_template_path
12
+ @podfile_path = podfile_path.is_a?(Pathname) ? podfile_path.to_s : podfile_path
13
+ @podfile_template_path = podfile_template_path.is_a?(Pathname) ? podfile_template_path.to_s : podfile_template_path
14
14
  @label = label || DEFAULT_LABEL
15
15
  end
16
16
 
@@ -1,3 +1,3 @@
1
1
  module PodfileGenerator
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podfile_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - tripleCC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-02 00:00:00.000000000 Z
11
+ date: 2018-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods-core