cocoapods-aqarahome 0.0.1 → 0.0.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
  SHA256:
3
- metadata.gz: d0e9066aa25a56bc22955678caf0a461972044139e3152d1c6723a32f51322dd
4
- data.tar.gz: eb78f37bb214545deca2a5b33397748182de77a163b51d0b8c376a50dfe2c2d1
3
+ metadata.gz: 2fde43812df0d08fc64c8a7b8fef03f1ad819d2e0e670bdc6f7e5c0383c8a54b
4
+ data.tar.gz: 2b2ac777d8877afaddd65cb3794ae9f343250e7ab184c80065b9a7b3d86dd3de
5
5
  SHA512:
6
- metadata.gz: c47666b94477aceca2c88320350c9e6d09d70fd0bec23eb08fe8771c8f438295d82aeb8e794bd6f70bbfeb720fae2e90a2dc7f634f5c1820f52e04e25f214050
7
- data.tar.gz: b6081e63fd90ed6ce1561a73dce8fcd4c90765e2eb58e11bf4ff1203b60c1bba9dbc35ce890c37ed17d6b9628a5d6c983c544beafb02d3975b048dcf659d3e12
6
+ metadata.gz: 3f0fc1d6dd5176528637f30bd13c24a204eb83b30ce3d0df27b52c76ab219d613acfe9a262a9224174d826780830083f11f1bc4d4c42a088a13945544b0202ac
7
+ data.tar.gz: b3d13861a18df847bf57d16943bd6b1af20bb9c8906a7085eb95f44a936a2d82ee9024b3fb3dc10185ec3d4536884299814742b404d6e95d05802e024c546a15
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cocoapods-aqarahome (0.0.1)
4
+ cocoapods-aqarahome (0.0.2)
5
5
  claide (>= 1.0.2, < 2.0)
6
6
 
7
7
  GEM
@@ -1,31 +1,31 @@
1
-
2
- class String
3
- # colorization
4
- def colorize(color_code)
5
- "\e[#{color_code}m#{self}\e[0m"
6
- end
7
-
8
- def red
9
- colorize(31)
10
- end
11
-
12
- def green
13
- colorize(32)
14
- end
15
-
16
- def yellow
17
- colorize(33)
18
- end
19
-
20
- def blue
21
- colorize(34)
22
- end
23
-
24
- def pink
25
- colorize(35)
26
- end
27
-
28
- def light_blue
29
- colorize(36)
30
- end
31
- end
1
+ #
2
+ # class String
3
+ # # colorization
4
+ # def colorize(color_code)
5
+ # "\e[#{color_code}m#{self}\e[0m"
6
+ # end
7
+ #
8
+ # def red
9
+ # colorize(31)
10
+ # end
11
+ #
12
+ # def green
13
+ # colorize(32)
14
+ # end
15
+ #
16
+ # def yellow
17
+ # colorize(33)
18
+ # end
19
+ #
20
+ # def blue
21
+ # colorize(34)
22
+ # end
23
+ #
24
+ # def pink
25
+ # colorize(35)
26
+ # end
27
+ #
28
+ # def light_blue
29
+ # colorize(36)
30
+ # end
31
+ # end
@@ -1,7 +1,7 @@
1
1
  module Pod
2
2
  class Podfile
3
3
  module DSL
4
- require 'cocoapods-aqarahome/Utils/Color'
4
+
5
5
  public
6
6
 
7
7
  def dev_pods(pods, branch = 'aqara')
@@ -36,13 +36,13 @@ module Pod
36
36
 
37
37
  def pull_latest_code_and_resolve_conflict(pods)
38
38
  # 1、Podfile.lock
39
- puts "正在清理Podfile.lock中私有库的commit信息...".pink
39
+ puts "正在清理Podfile.lock中私有库的commit信息...".red
40
40
  rewrite_lock_file(pods, Config.instance.lockfile_path)
41
- puts "Podfile.lock中私有库的commit信息已清除!".light_blue
41
+ puts "Podfile.lock中私有库的commit信息已清除!".green
42
42
  # 2、Manifest.lock
43
- puts "正在清理Manifest.lock中私有库的commit信息...".pink
43
+ puts "正在清理Manifest.lock中私有库的commit信息...".red
44
44
  rewrite_lock_file(pods, Config.instance.sandbox.manifest_path)
45
- puts "Manifest.lock中私有库的commit信息已清除!".light_blue
45
+ puts "Manifest.lock中私有库的commit信息已清除!".green
46
46
  end
47
47
 
48
48
  def rewrite_lock_file(pods, lock_path)
@@ -1,3 +1,3 @@
1
1
  module CocoapodsAqarahome
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-aqarahome
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - zhaoxifan