yjncopycat 0.1.0 → 0.1.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 +4 -4
- data/bin/yjncopycat +5 -2
- data/lib/yjncopycat/commandparser.rb +1 -1
- data/lib/yjncopycat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04e574cd1a031831effc6ef3e6cf60cb9817e179373462daab4e8084668ba892
|
4
|
+
data.tar.gz: fec2b8611f91e23d82c3aa6a79d1df5bbd4f6933e815e0ef50a531bb280e836f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be5a57c9326f743a87fcbc52ad2bc1b5b0f0d1d17e176a1fe77bd2e3fe94674ca771fe59197c9cb6bcb3ae26d4fbdd01d9ada41e0797a32cfccda7f82f2a6a42
|
7
|
+
data.tar.gz: 2a497d505256811d3bfcb1b3b11292e0bb6c00364beb1d514d62e0ebac8414efc425f88c09050d32c78094201adb4476c6c65c982fa082f5fd46b7ce0af6a7c2
|
data/bin/yjncopycat
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
require 'pp'
|
4
3
|
require 'colored2'
|
5
4
|
require 'yjncopycat/commandparser.rb'
|
6
5
|
require 'yjncopycat/xcodeprojectcloner.rb'
|
7
|
-
|
6
|
+
|
7
|
+
if ARGV.length == 0 || ARGV.length > 2
|
8
|
+
puts 'USAGE: $ yjncopycat --url <iOS_project_github_url> --name <new_project_name>'.yellow
|
9
|
+
exit 0
|
10
|
+
end
|
8
11
|
|
9
12
|
options = YJNCopycat::CommandParser.parse(ARGV)
|
10
13
|
puts ''
|
data/lib/yjncopycat/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yjncopycat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Feb Dela Cruz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07-
|
11
|
+
date: 2018-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Clones an Xcode project and renames it.
|
14
14
|
email:
|